~yade-dev/yade/eigen3

« back to all changes in this revision

Viewing changes to Eigen/src/SuperLUSupport/SuperLUSupport.h

  • Committer: Anton Gladky
  • Date: 2012-11-07 22:02:48 UTC
  • Revision ID: gladky.anton@gmail.com-20121107220248-uoks7euvfwp7wrf7
3.1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
496
496
 
497
497
    SuperLU(const MatrixType& matrix) : Base()
498
498
    {
499
 
      Base::init();
500
 
      compute(matrix);
 
499
      init();
 
500
      Base::compute(matrix);
501
501
    }
502
502
 
503
503
    ~SuperLU()
833
833
    SuperILU(const MatrixType& matrix) : Base()
834
834
    {
835
835
      init();
836
 
      compute(matrix);
 
836
      Base::compute(matrix);
837
837
    }
838
838
 
839
839
    ~SuperILU()