Пример #1
0
        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);
        }
Пример #2
0
        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);
        }
Пример #3
0
 internal void SavePatternLabProject(string fileName, string description)
 {
     PLP.PatternLabProject plp = new PLP.PatternLabProject(sparseMatrixClean, indexParserClean, description);
     plp.Save(fileName);
 }