~vcs-imports/escript-finley/trunk

« back to all changes in this revision

Viewing changes to paso/src/Options.h

  • Committer: jfenwick
  • Date: 2010-10-11 01:48:14 UTC
  • Revision ID: svn-v4:77569008-7704-0410-b7a0-a92fef0b09fd:trunk:3259
Merging dudley and scons updates from branches

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#ifndef INC_PASO_OPTIONS
27
27
#define INC_PASO_OPTIONS
28
28
 
29
 
#include "Paso_MPI.h"
 
29
#include "esysUtils/Esys_MPI.h"
30
30
 
31
31
/* solver options */
32
32
 
125
125
PASO_DLL_API
126
126
void Paso_Options_showDiagnostics(const Paso_Options* options);
127
127
const char* Paso_Options_name(const index_t key);
128
 
index_t Paso_Options_getPackage(index_t solver,index_t package, bool_t symmetry, Paso_MPIInfo *mpi_info);
 
128
index_t Paso_Options_getPackage(index_t solver,index_t package, bool_t symmetry, Esys_MPIInfo *mpi_info);
129
129
 
130
 
index_t Paso_Options_getSolver(index_t solver,index_t package, bool_t symmetry, Paso_MPIInfo *mpi_info);
 
130
index_t Paso_Options_getSolver(index_t solver,index_t package, bool_t symmetry, Esys_MPIInfo *mpi_info);
131
131
 
132
132
#define Paso_Options_copy(in,out) memcpy((Paso_Options*)out,(Paso_Options*)in,sizeof(Paso_Options))
133
133