Skip to content

Commit

Permalink
commented out the labeledGraph from StatGraphs
Browse files Browse the repository at this point in the history
  • Loading branch information
harshitmotwani2015 committed Nov 5, 2020
1 parent 747c97b commit cda51d0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions AlgebraicStatistics/MLE/StatGraphs.m2
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ export {
"SortedDigraph",
"Bigraph",
"bigraph",
"LabeledGraph",
"labeledGraph",
-- "LabeledGraph",
--"labeledGraph",
"MixedGraph",
"mixedGraph",
"newDigraph",
Expand Down Expand Up @@ -97,7 +97,9 @@ bigraph (List, List):= opts -> (V,L) -> new Bigraph from graph(V,L, opts)
bigraph (List, Matrix) := opts -> (V,A) -> new Bigraph from graph(V,A, opts)
bigraph Matrix := opts -> A -> new Bigraph from graph(A, opts)

-*
--This code is written for an older version of Graphs and is not functional with current version of the packages.
graphData = "graphData"
labels = "labels"
Expand Down Expand Up @@ -146,7 +148,7 @@ toString LabeledGraph := g -> concatenate(
graph LabeledGraph := opts -> g -> g#graph --used to transform the LabeledGraph into a hashtable

*-


MixedGraph = new Type of HashTable
Expand Down

1 comment on commit cda51d0

@harshitmotwani2015
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#151

I have commented out the code for labeledGraphs from StatGraphs.

Please sign in to comment.