public void SavePatternLabProjectFile(string fileName, string description) { KeyValuePair <SparseMatrixIndexParserV2, SparseMatrix> ism = GenerateIndexAndSparseMatrix(); PLP.PatternLabProject plp = new PLP.PatternLabProject(ism.Value, ism.Key, description); plp.Save(fileName); }
public void SavePatternLabProjectFile(string fileName, string projectDescription) { SparseMatrixIndexParserV2 smip = GenerateIndex(); SparseMatrix sm = GenerateSparseMatrix(); PLP.PatternLabProject plp = new PLP.PatternLabProject(sm, smip, projectDescription); plp.Save(fileName); }
internal void SavePatternLabProject(string fileName, string description) { PLP.PatternLabProject plp = new PLP.PatternLabProject(sparseMatrixClean, indexParserClean, description); plp.Save(fileName); }