aboutsummaryrefslogtreecommitdiff
path: root/src/jtutil/test_fuzzy.cc
Commit message (Collapse)AuthorAge
* Make "Erik" branch the default trunk for AHFinderDirect.svnadmin2008-06-26
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@1526 f88db872-0e4f-0410-b76b-b9085cfa78c5
* fix a C++ namespaces bug found by Erik:jthorn2005-02-01
| | | | | | | | | | | | | | | error_exit() was declared extern "C" --> it wasn't namespace-mangled --> it could conflict with a similar error_exit() in another thorn although this fix touches a *lot* of files, it's conceptually simple: * error_exit() is not extern "C" any more * everything in src/jtutil/ (which used to be in the jtutil:: namespace) is now in the AHFinderDirect::jtutil:: namespace --> all C++ code in this thorn is now inside the AHFinderDirect:: namespace git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@1395 f88db872-0e4f-0410-b76b-b9085cfa78c5
* Change various jtutil/ templates which used to bejthorn2003-01-18
| | | | | | | | | | | | | | | | template <typename fp> to template <typename fp_t> (that is, rename the tempalte parameter from "fp" to "fp_t"). The reason for this change is that elsewhere in this thorn, I use "fp" as a typedef for CCTK_REAL (= usually a typedef for double). Using the same name for both a specific type and a template parameter may be confusing to humans. It also may be confusing the Hitachi compiler... git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@925 f88db872-0e4f-0410-b76b-b9085cfa78c5
* back out last change for these filesjthorn2002-10-11
| | | | | | | | | | | | | | | | > test_fuzzy.cc > * change error_exit() call to fprintf(stderr, ...) followed by abort() > so we don't need error_exit() and thus can compile standalone > (error_exit() now needs "cctk.h" :( ) > > makefile > * remove dependence on error_exit() from test_fuzzy since error_exit() does *NOT* actually need "cctk.h" if we compile with -DSTANDALONE_TEST git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@827 f88db872-0e4f-0410-b76b-b9085cfa78c5
* util.hhjthorn2002-10-11
| | | | | | | | | | | | | | | | | | | | * make fuzzy::tolerance a private data member and add set/get public fns to access it ((cleaner C++ style)) fuzzy.cc * fix template-instantiation syntax ==> now warning-free with icc 5, hopefully this will also fix the fatal errors on the Hitachi test_fuzzy.cc * change error_exit() call to fprintf(stderr, ...) followed by abort() so we don't need error_exit() and thus can compile standalone (error_exit() now needs "cctk.h" :( ) makefile * remove dependence on error_exit() from test_fuzzy git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@826 f88db872-0e4f-0410-b76b-b9085cfa78c5
* - rename "config.hh" to "config.h" since it's now C++/C/Fortranjthorn2002-09-29
| | | | | | | | | | | | minor code tweaks for better portability (std:: namespace stuff) - switch all (new-style) #include <cstdio> style includes back to (old-style) #include <stdio.h> style - drop all using std::printf; declarations - change all uses of std::min and std::max to jtuti:: instead - drop all explicit std:: qualifiers git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@777 f88db872-0e4f-0410-b76b-b9085cfa78c5
* change $Id:$ --> $Header:$jthorn2002-09-13
| | | | | | | | | rename src/util/ --> src/patch/ add Jacobian code for computing surface integrals add support for choosing ASCII or HDF5 data files (HDF5 not implemented yet) git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@727 f88db872-0e4f-0410-b76b-b9085cfa78c5
* switch to new organization for #include files:jthorn2002-06-24
| | | | | | | | we #include stuff in . and ../include directly, everything else includes a relative pathname ../whereever/foo.hh git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@589 f88db872-0e4f-0410-b76b-b9085cfa78c5
* put *everything* into namespace jtutil::jthorn2002-03-27
| | | | | | | start changing arrays to allow user-specified strides (only array2d so far) git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@378 f88db872-0e4f-0410-b76b-b9085cfa78c5
* s/fpt/fp/g as template parameterjthorn2001-07-03
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@125 f88db872-0e4f-0410-b76b-b9085cfa78c5
* rename util++.hh --> util.hhjthorn2001-06-21
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@92 f88db872-0e4f-0410-b76b-b9085cfa78c5
* minor comment & whitespace tweaksjthorn2001-06-15
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@36 f88db872-0e4f-0410-b76b-b9085cfa78c5
* change from template <class T> --> template <typename T>jthorn2001-06-15
| | | | | | | for numeric types git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@34 f88db872-0e4f-0410-b76b-b9085cfa78c5
* minor tweaks to cpm_map --> now passes testsjthorn2001-06-15
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@33 f88db872-0e4f-0410-b76b-b9085cfa78c5
* change from int *x to int* x style for pointersjthorn2001-06-15
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@25 f88db872-0e4f-0410-b76b-b9085cfa78c5
* Makefile: minor tweaksjthorn2001-06-15
| | | | | | | | test_fuzzy.cc: fix botched "jtuil::" namespace error_exit.c: include file is now "jt/stdc.h" git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@22 f88db872-0e4f-0410-b76b-b9085cfa78c5
* switch back to #include "jt/..." convention for my personaljthorn2001-06-15
| | | | | | | "standard" header files (stdc.h, util++.hh) git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@20 f88db872-0e4f-0410-b76b-b9085cfa78c5
* initial import into cvsjthorn2001-06-15
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@19 f88db872-0e4f-0410-b76b-b9085cfa78c5