Exemplo n.º 1
0
        public static LinearSolverSparse <DMatrixSparseCSC, DMatrixRMaj> lu(FillReducing permutation)
        {
            ComputePermutation <DMatrixSparseCSC> cp = FillReductionFactory_DSCC.create(permutation);
            LuUpLooking_DSCC lu = new LuUpLooking_DSCC(cp);

            return(new LinearSolverLu_DSCC(lu));
        }
Exemplo n.º 2
0
 public LinearSolverLu_DSCC(LuUpLooking_DSCC decomposition)
 {
     this.decomposition = decomposition;
 }