source: CIVL/examples/mpi-omp/AMG2013/krylov_bug/krylov_bug.h

main
Last change on this file was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5704 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 354 bytes
RevLine 
[0a5fb11]1#define hypre_CTAllocF(type, count, funcs) \
2( (type *)(*(funcs->CAlloc))\
3((unsigned int)(count), (unsigned int)sizeof(type)) )
4
5typedef struct
6{
7 char * (*CAlloc) ( int count, int elt_size );
8
9} hypre_GMRESFunctions;
10
11typedef struct
12{
13 int k_dim;
14
15} hypre_GMRESData;
16
17void *hypre_GMRESCreate( hypre_GMRESFunctions *gmres_functions );
18
19
Note: See TracBrowser for help on using the repository browser.