Skip to content
Snippets Groups Projects
  1. Dec 08, 2005
  2. Dec 07, 2005
  3. Dec 06, 2005
  4. Dec 05, 2005
  5. Dec 01, 2005
  6. Nov 30, 2005
  7. Nov 29, 2005
  8. Nov 28, 2005
    • Robert Klöfkorn's avatar
      corrected bnd values. · 80ed1107
      Robert Klöfkorn authored
      [[Imported from SVN: r3533]]
      80ed1107
    • Sreejith Pulloor Kuttanikkad's avatar
      bug: simplexquadraturerules for ID tries to return rule for 2D :( fixed and i... · eea3856d
      Sreejith Pulloor Kuttanikkad authored
      bug: simplexquadraturerules for ID tries to return rule for 2D :(  fixed and i think this may also fix the ID bug that oliver reported..??
      
      [[Imported from SVN: r3532]]
      eea3856d
    • Markus Blatt's avatar
      Added forgotten headers. · 889d3f8c
      Markus Blatt authored
      [[Imported from SVN: r3531]]
      889d3f8c
    • Markus Blatt's avatar
      Easier setup of AMG in sequential mode, e. g.: · 187940a8
      Markus Blatt authored
        Dune::MatrixAdapter<BCRSMat,Vector,Vector> fop(mat);
      
        typedef Dune::Amg::MatrixHierarchy<BCRSMat,ParallelIndexSet> MHierarchy;
        typedef Dune::Amg::CoarsenCriterion<Dune::Amg::SymmetricCriterion<BCRSMat,Dune::Amg::FirstDiagonal> >
          Criterion;
        typedef Dune::SeqSSOR<BCRSMat,Vector,Vector> Smoother;
        typedef Dune::Amg::SmootherTraits<Smoother>::Arguments SmootherArgs;
      
        SmootherArgs smootherArgs;
      
        smootherArgs.iterations = 2;
      
      
        Criterion criterion(15,coarsenTarget);
        criterion.setMaxDistance(2);
      
        Dune::SeqScalarProduct<Vector> sp;
        typedef Dune::Amg::AMG<MHierarchy,Vector,Smoother> AMG;
      
        AMG amg(fop.getmat(), criterion, smootherArgs, 1, 1);
      
      [[Imported from SVN: r3530]]
      187940a8
  9. Nov 26, 2005
Loading