Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 4 (100.0%) | 4 (100.0%) | 1.0 |
dav | 3 (75.0%) | 3 (75.0%) | 1.0 |
jsutherland | 1 (25.0%) | 1 (25.0%) | 1.0 |
Fixing --without-fortran. (Some MPM optional fortran files weren't
being guarded.)
M include/sci_defs/uintah_testdefs.h.in
Added @DEF_NO_FORTRAN@ set to "#define NO_FORTRAN" if fortran disabled.
If you want to check for NO_FORTRAN, you need to
#include <sci_defs/uintah_defs.h> // For NO_FORTRAN
and then:
#if !defined(NO_FORTRAN)
...fortran code...
#endif
M CCA/Components/MPM/ConstitutiveModel/ConstitutiveModelFactory.cc
M CCA/Components/MPM/ConstitutiveModel/sub.mk
Turn off HypoElasticFortran, Kayenta, and Diamm (and fortran/ subdir)
if fortran disabled.
M configure.ac
M configure
- Added more specific build system variables for turning off fortran.
(Before, only needed to turn off all of Arches. Now need to turn off
parts of certain components (eg: MPM)).
- Clear out fortran build variables if fortran disabled.
M configVars.mk.in
Put NO_FORTRAN into Makefiles so it can be used to conditionally
build/not build fortran files as necessary.
1 lines of code changed in 2 files:
This checkin adds a new component (Wasatch) to Uintah. Wasatch uses
graph theory to automatically assemble algorithms from individual
"expressions." It also uses an operator approach to discrete field
operations, i.e. application of a gradient to a field. It provides
general wrapper capabilities for these "expression graphs" and exposes
them as Uintah tasks.
Currently Wasatch will not be built by default. This is to avoid
breaking other developers until we get the build system in shape.
Noteworthy changes outside of wasatch:
- the configure stuff was changed to allow Wasatch to be turned on
during configure. This required me to re-run autoconf, resulting
in numerous changes to configure since I was using a different
version of autoconf than was previously run.
- Modified the ups_spec.xml file to add a few more "common tags."
Dav is working on a better way to introduce these so that we don't
need to "pollute" this file.
- Modified CCA/Components/Parent/ComponentFactory.cc to plug Wasatch
in. In doing this, I moved a header file inclusion up a bit so
that the appropriate #define were available when including header
files.
- Changes to the appropriate sub.mk files to plug in the new component.
1 lines of code changed in 1 file:
Making Arches TabProps optional. (For now.)
M configure
M configure.ac
M configVars.mk.in
M include/sci_defs/uintah_testdefs.h.in
Set up the #define and Make variables to be used for checking to see
if TabProps exists. You must #include <sci_defs/uintah_defs.h> to ge
the appropiate HAVE_TABPROPS variable.
M CCA/Components/Arches/ChemMix/sub.mk
White space fix.
M CCA/Components/Arches/sub.mk
Only build the ChemMix subdir if TabProps is enabled.
M CCA/Components/Arches/Properties.cc
M CCA/Components/Arches/Properties.h
#if out TabProps stuff when TabProps is not enabled.
2 lines of code changed in 1 file: