~corrado-maurini/dolfin/tao

« back to all changes in this revision

Viewing changes to dolfin/la/uBLASKrylovSolver.cpp

  • Committer: corrado maurini
  • Date: 2012-12-18 12:16:08 UTC
  • mfrom: (6685.78.207 trunk)
  • Revision ID: corrado.maurini@upmc.fr-20121218121608-nk82ly9jgsld9u84
updating with trunk, fix uint in TAO solver and hacking the check for tao FindTAO.cmake

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
  // Do nothing
91
91
}
92
92
//-----------------------------------------------------------------------------
93
 
dolfin::uint uBLASKrylovSolver::solve(GenericVector& x, const GenericVector& b)
 
93
std::size_t uBLASKrylovSolver::solve(GenericVector& x, const GenericVector& b)
94
94
{
95
95
  dolfin_assert(A);
96
96
  dolfin_assert(P);
132
132
  return 0;
133
133
}
134
134
//-----------------------------------------------------------------------------
135
 
dolfin::uint uBLASKrylovSolver::solve(const GenericLinearOperator& A,
 
135
std::size_t uBLASKrylovSolver::solve(const GenericLinearOperator& A,
136
136
                                      GenericVector& x,
137
137
                                      const GenericVector& b)
138
138
{