thorn_name
stringclasses
227 values
url
stringclasses
26 values
configuration
stringclasses
137 values
interface
stringclasses
225 values
param
stringclasses
220 values
schedule
stringclasses
223 values
src_filename
stringlengths
4
83
src_code
stringlengths
0
579k
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
cctest/vector/vector_h-std--std-vector.cc
// $Header$ #include <stdio.h> #include <vector.h> int main() { printf("testing <vector.h> functions in std:: namespace:\n"); std::vector<int> v(3); v[0] = 42; v[1] = 69; v[2] = 105; printf("%d %d %d should be 42 69 105... ", v[0], v[1], v[2]); printf(((v[0] == 42) && (v[1] == 69) && (v[2] == 105)) ? "ok\n" : "FAIL\n...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
cctest/vector/vector_h-std--using-namespace-std.cc
// $Header$ #include <stdio.h> #include <vector.h> using namespace std; int main() { printf("testing <vector.h> functions in std:: namespace:\n"); vector<int> v(3); v[0] = 42; v[1] = 69; v[2] = 105; printf("%d %d %d should be 42 69 105... ", v[0], v[1], v[2]); printf(((v[0] == 42) && (v[1] == 69) && (v[2] == 105)) ? ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
cctest/vector/vector_h-std--using-std-vector.cc
// $Header$ #include <stdio.h> #include <vector.h> using std::vector; int main() { printf("testing <vector.h> functions in std:: namespace:\n"); vector<int> v(3); v[0] = 42; v[1] = 69; v[2] = 105; printf("%d %d %d should be 42 69 105... ", v[0], v[1], v[2]); printf(((v[0] == 42) && (v[1] == 69) && (v[2] == 105)) ? "o...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
cctest/vector/vector-std--using-namespace-std.cc
// $Header$ #include <stdio.h> #include <vector> using namespace std; int main() { printf("testing <vector> functions in std:: namespace:\n"); vector<int> v(3); v[0] = 42; v[1] = 69; v[2] = 105; printf("%d %d %d should be 42 69 105... ", v[0], v[1], v[2]); printf(((v[0] == 42) && (v[1] == 69) && (v[2] == 105)) ? "ok\...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
cctest/vector/vector_h-global.cc
// $Header$ #include <stdio.h> #include <vector.h> int main() { printf("testing <vector.h> functions in global namespace:\n"); vector<int> v(3); v[0] = 42; v[1] = 69; v[2] = 105; printf("%d %d %d should be 42 69 105... ", v[0], v[1], v[2]); printf(((v[0] == 42) && (v[1] == 69) && (v[2] == 105)) ? "ok\n" : "FAIL\n"); ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
cctest/vector/vector-global.cc
// $Header$ #include <stdio.h> #include <vector> int main() { printf("testing <vector> functions in global namespace (THIS SHOULD FAIL):\n"); vector<int> v(3); v[0] = 42; v[1] = 69; v[2] = 105; printf("%d %d %d should be 42 69 105... ", v[0], v[1], v[2]); printf(((v[0] == 42) && (v[1] == 69) && (v[2] == 105)) ? "ok\n...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/README
This directory contains sparse matrix routines imported from elsewhere. See the individual files or subdirectories for details on authorship, copyright, etc. ilucg ILUCG (Incomplete LU-decomposition / conjugate gradiant) subroutines. umfpack UMFPACK sparse LU decomposition package (version 4.0 of 11.Apr.2002). y1...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/ilucg/ilucg.h
/* ilucg.h -- C/C++ prototypes for [sd]ilucg() routines */ /* $Header$ */ /* * prerequisites: * "cctk.h" * "config.h" // for "integer" = Fortran integer */ #ifdef __cplusplus extern "C" { #endif /* * ***** ILUCG ***** */ void CCTK_FCALL CCTK_FNAME(silucg)(const integer* N, const integer IA[], c...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/ilucg/silucg.f77
SUBROUTINE SILUCG(N, $ IA,JA,A, $ B,X, $ ITEMP,RTEMP, $ EPS,ITER, $ ISTATUS,IERROR) IMPLICIT REAL (A-H,O-Z) DIMENSION IA(*),JA(*),A(*),B(*),X(*),ITEMP(*),RTEMP(*) C C INCOMPLETE LU DECOMPO...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/ilucg/README
This directory contains the ILUCG (Incomplete LU-decomposition / conjugate gradiant) sparse matrix subroutines. These subroutines were provided to me (JT) by Tom Nicol of the University of British Columbia Computing Center in 1985; I believe they were originally written by P. Madderom (also of the UBC Computing Center...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/ilucg/make.code.defn
# Cactus specification of things to be compiled in this directory # $Header$ # Source files in this directory ## uncomment the appropriate line for single vs double precision ##SRCS = silucg.f77 SRCS = dilucg.f77 # Subdirectories containing source files SUBDIRS =
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/ilucg/dilucg.f77
SUBROUTINE DILUCG(N, $ IA,JA,A, $ B,X, $ ITEMP,RTEMP, $ EPS,MAXITER, $ ISTATUS) IMPLICIT DOUBLE PRECISION (A-H,O-Z) DIMENSION IA(*),JA(*),A(*),B(*),X(*),ITEMP(*),RTEMP(*) C C INCOMPLETE LU...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_set_stats.c
/* ========================================================================== */ /* === UMF_set_stats ======================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_mem_init_memoryspace.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_malloc.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_free_numeric.c
/* ========================================================================== */ /* === UMFPACK_free_numeric ================================================= */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_get_numeric.c
/* ========================================================================== */ /* === UMFPACK_get_numeric ================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_kernel_wrapup.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/wrap_umf_utsolve.c
#define CONJUGATE_SOLVE #include "umf_utsolve.c"
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_version.h
/* ========================================================================== */ /* === umf_version ========================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_kernel.c
/* ========================================================================== */ /* === UMF_kernel =========================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_report_perm.h
/* ========================================================================== */ /* === umfpack_report_perm ================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_solve.h
/* ========================================================================== */ /* === umfpack_solve ======================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_config.h
/* ========================================================================== */ /* === umf_config.h ========================================================= */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_report_status.h
/* ========================================================================== */ /* === umfpack_report_status ================================================ */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_build_tuples.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_mem_alloc_head_block.c
/* ========================================================================== */ /* === UMF_mem_alloc_head_block ============================================= */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_report_numeric.h
/* ========================================================================== */ /* === umfpack_report_numeric =============================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_create_element.c
/* ========================================================================== */ /* === UMF_create_element =================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_symbolic_usage.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_garbage_collection.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_utsolve.c
/* ========================================================================== */ /* === UMF_utsolve ========================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_tuple_lengths.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_blas3_update.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_build_tuples_usage.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_col_to_triplet.h
/* ========================================================================== */ /* === umfpack_col_to_triplet =============================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_defaults.c
/* ========================================================================== */ /* === UMFPACK_defaults ===================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_valid_numeric.c
/* ========================================================================== */ /* === UMF_valid_numeric ==================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_timer.c
/* ========================================================================== */ /* === umfpack_timer ======================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_realloc.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_report_perm.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/License
UMFPACK Version 4.0 (Apr 11, 2002). Copyright (c) 2002 by Timothy A. Davis. All Rights Reserved. UMFPACK License: Your use or distribution of UMFPACK or any modified version of UMFPACK implies that you agree to this License. THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED OR ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_colamd.c
/* ========================================================================== */ /* === UMF_colamd =========================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_wsolve.h
/* ========================================================================== */ /* === umfpack_wsolve ======================================================= */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_report_control.h
/* ========================================================================== */ /* === umfpack_report_control =============================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_extend_front.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/ChangeLog
Apr 11, 2002: * bug fix: the Microsoft compiler doesn't handle NaN's properly. utIsNaN, and other ut* routines, added for MathWorks version to handle this properly. Apr 1, 2002: * bug fix: if a column was all NaN's, then UMFPACK would fail to find a pivot row. umf_row_search.c and umf_internal.h modif...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_row_search.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_qsymbolic.h
/* ========================================================================== */ /* === umfpack_qsymbolic ==================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_symbolic.c
/* ========================================================================== */ /* === UMFPACK_symbolic ===================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_kernel_init.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_scale_column.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_get_lunz.h
/* ========================================================================== */ /* === umfpack_get_lunz ===================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_order_front_tree.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_is_permutation.c
/* ========================================================================== */ /* === UMF_is_permutation =================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_lsolve.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/wrap_umfpack_wsolve.c
#define WSOLVE #include "umfpack_solve.c"
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_report_matrix.h
/* ========================================================================== */ /* === umfpack_report_matrix ================================================ */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_init_front.c
/* ========================================================================== */ /* === UMF_init_front ======================================================= */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_usolve.c
/* ========================================================================== */ /* === UMF_usolve =========================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_kernel_init_usage.c
/* ========================================================================== */ /* === UMF_kernel_init_usage ================================================ */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_transpose.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_assemble.c
/* ========================================================================== */ /* === UMF_assemble ========================================================= */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_dump.h
/* ========================================================================== */ /* === UMF_dump ============================================================= */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_local_search.c
/* ========================================================================== */ /* === UMF_local_search ===================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_apply_order.c
/* ========================================================================== */ /* === UMF_apply_order ====================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_transpose.h
/* ========================================================================== */ /* === umfpack_transpose ==================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_get_memory.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_ltsolve.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_free.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_get_symbolic.h
/* ========================================================================== */ /* === umfpack_get_symbolic ================================================= */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_solve.c
/* ========================================================================== */ /* === UMF_solve ============================================================ */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_mem_free_tail_block.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_mem_alloc_tail_block.c
/* ========================================================================== */ /* === UMF_mem_alloc_tail_block ============================================= */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_report_symbolic.h
/* ========================================================================== */ /* === umfpack_report_symbolic ============================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_valid_symbolic.c
/* ========================================================================== */ /* === UMF_valid_symbolic =================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_analyze.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_numeric.h
/* ========================================================================== */ /* === umfpack_numeric ====================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_mem_alloc_element.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/README
This directory contains a subset of the files from the UMFPACK Version 4.0 (Apr 11, 2002) sparse matrix package. UMFPACK is copyright (c) 2002 by Timothy A. Davis. See License for the UMFPACK license. See README.UMFPACK for the original UMFPACK README file, including the url where the full package (including docu...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_free_symbolic.c
/* ========================================================================== */ /* === UMFPACK_free_symbolic ================================================ */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_utsolve.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_garbage_collection.c
/* ========================================================================== */ /* === UMF_garbage_collection =============================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_symbolic_usage.c
/* ========================================================================== */ /* === UMF_symbolic_usage =================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_create_element.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_build_tuples_usage.c
/* ========================================================================== */ /* === UMF_build_tuples_usage =============================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_blas3_update.c
/* ========================================================================== */ /* === UMF_blas3_update ===================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_tuple_lengths.c
/* ========================================================================== */ /* === UMF_tuple_lengths ==================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_solve.c
/* ========================================================================== */ /* === UMFPACK_solve ======================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_mem_alloc_head_block.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_build_tuples.c
/* ========================================================================== */ /* === UMF_build_tuples ===================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_kernel.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_malloc.c
/* ========================================================================== */ /* === UMF_malloc =========================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_mem_init_memoryspace.c
/* ========================================================================== */ /* === UMF_mem_init_memoryspace ============================================= */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/make.code.defn
# Cactus specification of things to be compiled in this directory # $Header$ # # UMFPACK comes with a Makefile which compiles many of the source files # multiple times with different -D compiler options, both to generate the # 4 UMFPACK variants (real/complex, int/long), and for other purposes. # Alas, Cactus doesn't ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_set_stats.h
/* -------------------------------------------------------------------------- */ /* UMFPACK Version 4.0 (Apr 11, 2002), Copyright (c) 2002 by Timothy A. */ /* Davis. All Rights Reserved. See README for License. */ /* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. ...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_kernel_wrapup.c
/* ========================================================================== */ /* === UMF_kernel_wrapup ==================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_free_numeric.h
/* ========================================================================== */ /* === umfpack_free_numeric ================================================= */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umfpack_get_numeric.h
/* ========================================================================== */ /* === umfpack_get_numeric ================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
EinsteinAnalysis/AHFinderDirect
https://bitbucket.org/einsteintoolkit/einsteinanalysis.git
REQUIRES THORNS: SpaceMask OPTIONAL HDF5 { }
# Interface definition for thorn AHFinderDirect # $Header$ implements: AHFinderDirect inherits: Grid ADMBase StaticConformal SpaceMask SphericalSurface IO # include file provided by SpaceMask USES INCLUDE: SpaceMask.h ################################################################################ # we use a mask i...
# Parameter definitions for thorn AHFinderDirect # $Header$ ################################################################################ # # ***** interface to the rest of Cactus ***** # # we may need to look at some grid:: parameters to choose our patch system type # note our access is read-only shares: grid US...
# Schedule definitions for thorn AHFinderDirect # $Header$ storage: ah_radius ah_origin ah_centroid ah_flags if (metric_timelevels == 1) { storage: ahmask[1] } else if (metric_timelevels == 2) { storage: ahmask[2] } else if (metric_timelevels == 3) { storage: ahmask[3] } # # setup # schedule AHFinderDirect_set...
sparse-matrix/umfpack/umf_row_search.c
/* ========================================================================== */ /* === UMF_row_search ======================================================= */ /* ========================================================================== */ /* -------------------------------------------------------------------------...