~vcs-imports/escript-finley/trunk

« back to all changes in this revision

Viewing changes to paso/src/Options_getPackage.c

  • 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:
28
28
 
29
29
/**************************************************************/
30
30
 
31
 
index_t Paso_Options_getPackage(index_t solver,index_t package, bool_t symmetry, Paso_MPIInfo *mpi_info) {
 
31
index_t Paso_Options_getPackage(index_t solver,index_t package, bool_t symmetry, Esys_MPIInfo *mpi_info) {
32
32
  index_t out=PASO_PASO;
33
33
  if (package==PASO_DEFAULT) {
34
34
      if (solver==PASO_DIRECT) {
60
60
  } else if (package==PASO_TRILINOS) {
61
61
      out=PASO_TRILINOS;
62
62
  } else {
63
 
      Paso_setError(VALUE_ERROR,"Unidentified package.");
 
63
      Esys_setError(VALUE_ERROR,"Unidentified package.");
64
64
  }
65
65
  return out;
66
66
}