~corrado-maurini/dolfin/tao

« back to all changes in this revision

Viewing changes to dolfin/la/EpetraLUSolver.h

  • 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:
65
65
    const GenericLinearOperator& get_operator() const;
66
66
 
67
67
    /// Solve linear system Ax = b
68
 
    uint solve(GenericVector& x, const GenericVector& b);
69
 
 
70
 
    /// Solve linear system Ax = b
71
 
    uint solve(const GenericLinearOperator& A, GenericVector& x, const GenericVector& b);
72
 
 
73
 
    /// Solve linear system Ax = b
74
 
    uint solve(const EpetraMatrix& A, EpetraVector& x, const EpetraVector& b);
 
68
    std::size_t solve(GenericVector& x, const GenericVector& b);
 
69
 
 
70
    /// Solve linear system Ax = b
 
71
    std::size_t solve(const GenericLinearOperator& A, GenericVector& x, const GenericVector& b);
 
72
 
 
73
    /// Solve linear system Ax = b
 
74
    std::size_t solve(const EpetraMatrix& A, EpetraVector& x, const EpetraVector& b);
75
75
 
76
76
    /// Return a list of available solver methods
77
77
    static std::vector<std::pair<std::string, std::string> > methods();