Example #1
0
 public void WriteTree(string path, Core.ObjectModels.Algorithm.Tree tree)
 {
     File.WriteAllText(path, tree.ToString(), Encoding.UTF8);
 }
Example #2
0
 public ICollection <int> SearchTree(ICollection <Tag> tags, Core.ObjectModels.Algorithm.Tree tree)
 {
     return(tree.Search(tags));
 }