Uses of Interface
gausselim.pivoting.PivotingMethod

Packages that use PivotingMethod
gausselim   
gausselim.pivoting   
 

Uses of PivotingMethod in gausselim
 

Methods in gausselim that return PivotingMethod
 PivotingMethod GaussElimModel.getPivotingMethod()
           
 

Methods in gausselim with parameters of type PivotingMethod
 void GaussElimModel.setPivotingMethod(PivotingMethod pm)
          Assign a new PivotingMethod to the system.
 

Uses of PivotingMethod in gausselim.pivoting
 

Classes in gausselim.pivoting that implement PivotingMethod
 class NoPivoting
          Pivoting method that does not pivot at all.
 class RowPivoting
          Row pivoting (also called partial pivoting).
 class ScaledRowPivoting
          Scaled row pivoting (also called implicit pivoting).
 

Methods in gausselim.pivoting that return PivotingMethod
 PivotingMethod PivotManager.getPivotingMethod(java.lang.String description)
           
 

Methods in gausselim.pivoting with parameters of type PivotingMethod
 java.lang.String PivotManager.getDescription(PivotingMethod pm)