├── @graph ├── across.m ├── add.m ├── alpha.m ├── bfstree.m ├── bipartition.m ├── bipmatch.m ├── bridges.m ├── bucky.m ├── cartesian.m ├── cayley.m ├── cdraw.m ├── chromatic_poly.m ├── circulant.m ├── clear_edges.m ├── clear_labels.m ├── color.m ├── complement.m ├── complete.m ├── component.m ├── components.m ├── contract.m ├── copy.m ├── copy_labels.m ├── cube.m ├── cycle.m ├── deg.m ├── delete.m ├── dfstree.m ├── diam.m ├── disjoint_union.m ├── display.m ├── dist.m ├── distxy.m ├── dodecahedron.m ├── dom.m ├── dot.m ├── draw.m ├── draw_labels.m ├── edge_color.m ├── edges.m ├── eig.m ├── embed.m ├── eq.m ├── euler_trail.m ├── fast_set_matrix.m ├── fgraph.m ├── find_path.m ├── free.m ├── full.m ├── get_label.m ├── getxy.m ├── graffle.m ├── graph.m ├── grid.m ├── hamiltonian_cycle.m ├── has.m ├── has_path.m ├── hasxy.m ├── icosahedron.m ├── incidence_matrix.m ├── induce.m ├── intersect.m ├── interval_graph.m ├── is_labeled.m ├── isconnected.m ├── isfull.m ├── iso.m ├── issparse.m ├── join.m ├── label.m ├── laplacian.m ├── ldraw.m ├── line_graph.m ├── load.m ├── make_logical.m ├── match_join.m ├── matrix.m ├── mdsxy.m ├── mobius.m ├── mycielski.m ├── nauty.m ├── ndraw.m ├── ne.m ├── neighbors.m ├── nsptrees.m ├── nv.m ├── octahedron.m ├── omega.m ├── paley.m ├── path.m ├── petersen.m ├── private │ ├── find_row.m │ ├── q_capacity.m │ ├── q_get.m │ ├── q_init.m │ ├── q_pop_back.m │ ├── q_pop_front.m │ ├── q_push.m │ ├── q_size.m │ └── vector_compare.m ├── prufer.m ├── random.m ├── random_bipartite.m ├── random_planar.m ├── random_regular.m ├── random_tree.m ├── randxy.m ├── renumber.m ├── resistance.m ├── resize.m ├── rmxy.m ├── save.m ├── scale.m ├── selective.m ├── set_matrix.m ├── sgf.m ├── shiftgraph.m ├── size.m ├── sl2graph.m ├── slot.m ├── sparse.m ├── split.m ├── sprandom.m ├── springxy.m ├── spy.m ├── subsref.m ├── thresh.m ├── trim.m ├── union.m ├── vertex_degree_sequence.m └── wheel.m ├── @partition ├── README.md ├── array.m ├── check.m ├── display.m ├── eq.m ├── merge.m ├── mtimes.m ├── ne.m ├── np.m ├── nv.m ├── partition.m ├── parts.m ├── plus.m ├── size.m └── subsref.m ├── @permutation ├── README.md ├── array.m ├── cycles.m ├── display.m ├── eq.m ├── inv.m ├── isempty.m ├── length.m ├── longest_cycle.m ├── matrix.m ├── miss.m ├── mpower.m ├── mtimes.m ├── ne.m ├── permutation.m ├── random.m ├── sign.m ├── size.m └── subsref.m ├── COPYRIGHT ├── LICENSE ├── README.md ├── check_matrix.m ├── doc ├── by-example │ ├── Makefile │ ├── by-example.pdf │ ├── by-example.tex │ ├── figs │ │ ├── bfstree.pdf │ │ ├── bucky.pdf │ │ ├── bucky.png │ │ ├── four-cube.pdf │ │ ├── graffle.pdf │ │ ├── grid34.pdf │ │ ├── ham-cycle.pdf │ │ ├── labeled-path.pdf │ │ ├── parsed.pdf │ │ ├── petersen-vertex.pdf │ │ ├── petersen.pdf │ │ ├── product-graph.pdf │ │ ├── randtree-nice.pdf │ │ ├── randtree-yuck.pdf │ │ ├── split-grid.pdf │ │ ├── split-grid.png │ │ └── star.pdf │ └── superdate.sty └── manual │ ├── Makefile │ ├── matgraph.pdf │ ├── matgraph.tex │ └── superdate.sty ├── find_available.m ├── free_all.m ├── genhtml.m ├── gpl.txt ├── graph_destroy.m ├── graph_init.m ├── graph_system_exists.m ├── html ├── alpha.png ├── c++.png ├── c.png ├── demoicon.gif ├── down.png ├── fortran.png ├── hp.png ├── index.html ├── left.png ├── linux.png ├── m2html.css ├── matgraph │ ├── @graph │ │ ├── across.html │ │ ├── add.html │ │ ├── alpha.html │ │ ├── bfstree.html │ │ ├── bipartition.html │ │ ├── bipmatch.html │ │ ├── bridges.html │ │ ├── bucky.html │ │ ├── cartesian.html │ │ ├── cayley.html │ │ ├── cdraw.html │ │ ├── chromatic_poly.html │ │ ├── circulant.html │ │ ├── clear_edges.html │ │ ├── clear_labels.html │ │ ├── color.html │ │ ├── complement.html │ │ ├── complete.html │ │ ├── component.html │ │ ├── components.html │ │ ├── contract.html │ │ ├── copy.html │ │ ├── copy_labels.html │ │ ├── cube.html │ │ ├── cycle.html │ │ ├── deg.html │ │ ├── delete.html │ │ ├── dfstree.html │ │ ├── diam.html │ │ ├── disjoint_union.html │ │ ├── display.html │ │ ├── dist.html │ │ ├── distxy.html │ │ ├── dodecahedron.html │ │ ├── dom.html │ │ ├── dot.html │ │ ├── draw.html │ │ ├── draw_labels.html │ │ ├── edge_color.html │ │ ├── edges.html │ │ ├── eig.html │ │ ├── embed.html │ │ ├── eq.html │ │ ├── euler_trail.html │ │ ├── fast_set_matrix.html │ │ ├── fgraph.html │ │ ├── find_path.html │ │ ├── free.html │ │ ├── full.html │ │ ├── get_label.html │ │ ├── getxy.html │ │ ├── graffle.html │ │ ├── graph.html │ │ ├── grid.html │ │ ├── hamiltonian_cycle.html │ │ ├── has.html │ │ ├── has_path.html │ │ ├── hasxy.html │ │ ├── icosahedron.html │ │ ├── incidence_matrix.html │ │ ├── index.html │ │ ├── induce.html │ │ ├── intersect.html │ │ ├── interval_graph.html │ │ ├── is_labeled.html │ │ ├── isconnected.html │ │ ├── isfull.html │ │ ├── iso.html │ │ ├── issparse.html │ │ ├── join.html │ │ ├── label.html │ │ ├── laplacian.html │ │ ├── ldraw.html │ │ ├── line_graph.html │ │ ├── load.html │ │ ├── make_logical.html │ │ ├── match_join.html │ │ ├── matrix.html │ │ ├── mdsxy.html │ │ ├── mobius.html │ │ ├── mtimes.html │ │ ├── mycielski.html │ │ ├── nauty.html │ │ ├── ndraw.html │ │ ├── ne.html │ │ ├── neighbors.html │ │ ├── nsptrees.html │ │ ├── nv.html │ │ ├── octahedron.html │ │ ├── omega.html │ │ ├── paley.html │ │ ├── path.html │ │ ├── petersen.html │ │ ├── plus.html │ │ ├── prufer.html │ │ ├── random.html │ │ ├── random_bipartite.html │ │ ├── random_planar.html │ │ ├── random_regular.html │ │ ├── random_tree.html │ │ ├── randxy.html │ │ ├── renumber.html │ │ ├── resistance.html │ │ ├── resize.html │ │ ├── rmxy.html │ │ ├── save.html │ │ ├── scale.html │ │ ├── selective.html │ │ ├── set_matrix.html │ │ ├── sgf.html │ │ ├── shiftgraph.html │ │ ├── size.html │ │ ├── sl2graph.html │ │ ├── slot.html │ │ ├── sparse.html │ │ ├── split.html │ │ ├── sprandom.html │ │ ├── springxy.html │ │ ├── spy.html │ │ ├── subsref.html │ │ ├── thresh.html │ │ ├── trim.html │ │ ├── uminus.html │ │ ├── union.html │ │ ├── vertex_degree_sequence.html │ │ └── wheel.html │ ├── @partition │ │ ├── array.html │ │ ├── check.html │ │ ├── display.html │ │ ├── eq.html │ │ ├── index.html │ │ ├── merge.html │ │ ├── mtimes.html │ │ ├── ne.html │ │ ├── np.html │ │ ├── nv.html │ │ ├── partition.html │ │ ├── parts.html │ │ ├── plus.html │ │ ├── size.html │ │ └── subsref.html │ ├── @permutation │ │ ├── array.html │ │ ├── cycles.html │ │ ├── display.html │ │ ├── eq.html │ │ ├── index.html │ │ ├── inv.html │ │ ├── isempty.html │ │ ├── length.html │ │ ├── longest_cycle.html │ │ ├── matrix.html │ │ ├── miss.html │ │ ├── mpower.html │ │ ├── mtimes.html │ │ ├── ne.html │ │ ├── permutation.html │ │ ├── random.html │ │ ├── sign.html │ │ ├── size.html │ │ └── subsref.html │ ├── check_matrix.html │ ├── find_available.html │ ├── free_all.html │ ├── genhtml.html │ ├── graph_destroy.html │ ├── graph_init.html │ ├── graph_system_exists.html │ ├── index.html │ ├── matgraph_version.html │ ├── max_available.html │ ├── num_available.html │ ├── set_large.html │ └── swap.html ├── matlabicon.gif ├── mex.png ├── right.png ├── sgi.png ├── simulinkicon.gif ├── solaris.png ├── up.png └── windows.png ├── matgraph_version.m ├── max_available.m ├── num_available.m ├── samples ├── README.md ├── cayley_graph.m ├── coloring.m ├── domination.m ├── edraw.m ├── eulerian.m ├── hamiltonian.m ├── html │ ├── cayley_graph.html │ ├── cayley_graph.png │ ├── cayley_graph_01.png │ ├── cayley_graph_02.png │ ├── cayley_graph_03.png │ ├── cayley_graph_04.png │ ├── coloring.html │ ├── coloring.png │ ├── coloring_01.png │ ├── coloring_02.png │ ├── domination.html │ ├── domination.png │ ├── domination_01.png │ ├── domination_02.png │ ├── eulerian.html │ ├── eulerian.png │ ├── eulerian_01.png │ ├── eulerian_02.png │ ├── hamiltonian.html │ ├── hamiltonian.png │ ├── hamiltonian_01.png │ ├── isomorphism.html │ ├── isomorphism.png │ ├── isomorphism_01.png │ ├── isomorphism_02.png │ ├── isomorphism_03.png │ ├── isomorphism_04.png │ ├── matching.html │ ├── matching.png │ ├── matching_01.png │ ├── matching_02.png │ ├── matching_03.png │ ├── partn.html │ ├── perm.html │ ├── ramsey.html │ ├── ramsey.png │ ├── ramsey_01.png │ ├── ramsey_02.png │ ├── spanning_tree.html │ ├── spanning_tree.png │ ├── spanning_tree_01.png │ ├── spanning_tree_02.png │ ├── splitter.html │ ├── splitter.png │ ├── splitter_01.png │ └── splitter_02.png ├── index.html ├── isomorphism.m ├── matching.m ├── partn.m ├── perm.m ├── ramsey.m ├── spanning_tree.m └── splitter.m ├── set_large.m ├── swap.m └── tools ├── graffle2sgf.py ├── graph_parser ├── LineParser.cc ├── LineParser.hxx ├── Makefile ├── README.md ├── graph_parser ├── main.cc └── test └── hypergraph_parser ├── LineParser.cc ├── LineParser.hxx ├── Makefile ├── README.md ├── main.cc └── test /@graph/across.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/across.m -------------------------------------------------------------------------------- /@graph/add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/add.m -------------------------------------------------------------------------------- /@graph/alpha.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/alpha.m -------------------------------------------------------------------------------- /@graph/bfstree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/bfstree.m -------------------------------------------------------------------------------- /@graph/bipartition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/bipartition.m -------------------------------------------------------------------------------- /@graph/bipmatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/bipmatch.m -------------------------------------------------------------------------------- /@graph/bridges.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/bridges.m -------------------------------------------------------------------------------- /@graph/bucky.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/bucky.m -------------------------------------------------------------------------------- /@graph/cartesian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/cartesian.m -------------------------------------------------------------------------------- /@graph/cayley.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/cayley.m -------------------------------------------------------------------------------- /@graph/cdraw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/cdraw.m -------------------------------------------------------------------------------- /@graph/chromatic_poly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/chromatic_poly.m -------------------------------------------------------------------------------- /@graph/circulant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/circulant.m -------------------------------------------------------------------------------- /@graph/clear_edges.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/clear_edges.m -------------------------------------------------------------------------------- /@graph/clear_labels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/clear_labels.m -------------------------------------------------------------------------------- /@graph/color.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/color.m -------------------------------------------------------------------------------- /@graph/complement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/complement.m -------------------------------------------------------------------------------- /@graph/complete.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/complete.m -------------------------------------------------------------------------------- /@graph/component.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/component.m -------------------------------------------------------------------------------- /@graph/components.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/components.m -------------------------------------------------------------------------------- /@graph/contract.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/contract.m -------------------------------------------------------------------------------- /@graph/copy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/copy.m -------------------------------------------------------------------------------- /@graph/copy_labels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/copy_labels.m -------------------------------------------------------------------------------- /@graph/cube.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/cube.m -------------------------------------------------------------------------------- /@graph/cycle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/cycle.m -------------------------------------------------------------------------------- /@graph/deg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/deg.m -------------------------------------------------------------------------------- /@graph/delete.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/delete.m -------------------------------------------------------------------------------- /@graph/dfstree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/dfstree.m -------------------------------------------------------------------------------- /@graph/diam.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/diam.m -------------------------------------------------------------------------------- /@graph/disjoint_union.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/disjoint_union.m -------------------------------------------------------------------------------- /@graph/display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/display.m -------------------------------------------------------------------------------- /@graph/dist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/dist.m -------------------------------------------------------------------------------- /@graph/distxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/distxy.m -------------------------------------------------------------------------------- /@graph/dodecahedron.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/dodecahedron.m -------------------------------------------------------------------------------- /@graph/dom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/dom.m -------------------------------------------------------------------------------- /@graph/dot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/dot.m -------------------------------------------------------------------------------- /@graph/draw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/draw.m -------------------------------------------------------------------------------- /@graph/draw_labels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/draw_labels.m -------------------------------------------------------------------------------- /@graph/edge_color.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/edge_color.m -------------------------------------------------------------------------------- /@graph/edges.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/edges.m -------------------------------------------------------------------------------- /@graph/eig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/eig.m -------------------------------------------------------------------------------- /@graph/embed.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/embed.m -------------------------------------------------------------------------------- /@graph/eq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/eq.m -------------------------------------------------------------------------------- /@graph/euler_trail.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/euler_trail.m -------------------------------------------------------------------------------- /@graph/fast_set_matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/fast_set_matrix.m -------------------------------------------------------------------------------- /@graph/fgraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/fgraph.m -------------------------------------------------------------------------------- /@graph/find_path.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/find_path.m -------------------------------------------------------------------------------- /@graph/free.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/free.m -------------------------------------------------------------------------------- /@graph/full.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/full.m -------------------------------------------------------------------------------- /@graph/get_label.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/get_label.m -------------------------------------------------------------------------------- /@graph/getxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/getxy.m -------------------------------------------------------------------------------- /@graph/graffle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/graffle.m -------------------------------------------------------------------------------- /@graph/graph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/graph.m -------------------------------------------------------------------------------- /@graph/grid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/grid.m -------------------------------------------------------------------------------- /@graph/hamiltonian_cycle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/hamiltonian_cycle.m -------------------------------------------------------------------------------- /@graph/has.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/has.m -------------------------------------------------------------------------------- /@graph/has_path.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/has_path.m -------------------------------------------------------------------------------- /@graph/hasxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/hasxy.m -------------------------------------------------------------------------------- /@graph/icosahedron.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/icosahedron.m -------------------------------------------------------------------------------- /@graph/incidence_matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/incidence_matrix.m -------------------------------------------------------------------------------- /@graph/induce.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/induce.m -------------------------------------------------------------------------------- /@graph/intersect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/intersect.m -------------------------------------------------------------------------------- /@graph/interval_graph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/interval_graph.m -------------------------------------------------------------------------------- /@graph/is_labeled.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/is_labeled.m -------------------------------------------------------------------------------- /@graph/isconnected.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/isconnected.m -------------------------------------------------------------------------------- /@graph/isfull.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/isfull.m -------------------------------------------------------------------------------- /@graph/iso.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/iso.m -------------------------------------------------------------------------------- /@graph/issparse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/issparse.m -------------------------------------------------------------------------------- /@graph/join.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/join.m -------------------------------------------------------------------------------- /@graph/label.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/label.m -------------------------------------------------------------------------------- /@graph/laplacian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/laplacian.m -------------------------------------------------------------------------------- /@graph/ldraw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/ldraw.m -------------------------------------------------------------------------------- /@graph/line_graph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/line_graph.m -------------------------------------------------------------------------------- /@graph/load.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/load.m -------------------------------------------------------------------------------- /@graph/make_logical.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/make_logical.m -------------------------------------------------------------------------------- /@graph/match_join.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/match_join.m -------------------------------------------------------------------------------- /@graph/matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/matrix.m -------------------------------------------------------------------------------- /@graph/mdsxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/mdsxy.m -------------------------------------------------------------------------------- /@graph/mobius.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/mobius.m -------------------------------------------------------------------------------- /@graph/mycielski.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/mycielski.m -------------------------------------------------------------------------------- /@graph/nauty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/nauty.m -------------------------------------------------------------------------------- /@graph/ndraw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/ndraw.m -------------------------------------------------------------------------------- /@graph/ne.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/ne.m -------------------------------------------------------------------------------- /@graph/neighbors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/neighbors.m -------------------------------------------------------------------------------- /@graph/nsptrees.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/nsptrees.m -------------------------------------------------------------------------------- /@graph/nv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/nv.m -------------------------------------------------------------------------------- /@graph/octahedron.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/octahedron.m -------------------------------------------------------------------------------- /@graph/omega.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/omega.m -------------------------------------------------------------------------------- /@graph/paley.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/paley.m -------------------------------------------------------------------------------- /@graph/path.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/path.m -------------------------------------------------------------------------------- /@graph/petersen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/petersen.m -------------------------------------------------------------------------------- /@graph/private/find_row.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/private/find_row.m -------------------------------------------------------------------------------- /@graph/private/q_capacity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/private/q_capacity.m -------------------------------------------------------------------------------- /@graph/private/q_get.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/private/q_get.m -------------------------------------------------------------------------------- /@graph/private/q_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/private/q_init.m -------------------------------------------------------------------------------- /@graph/private/q_pop_back.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/private/q_pop_back.m -------------------------------------------------------------------------------- /@graph/private/q_pop_front.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/private/q_pop_front.m -------------------------------------------------------------------------------- /@graph/private/q_push.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/private/q_push.m -------------------------------------------------------------------------------- /@graph/private/q_size.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/private/q_size.m -------------------------------------------------------------------------------- /@graph/private/vector_compare.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/private/vector_compare.m -------------------------------------------------------------------------------- /@graph/prufer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/prufer.m -------------------------------------------------------------------------------- /@graph/random.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/random.m -------------------------------------------------------------------------------- /@graph/random_bipartite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/random_bipartite.m -------------------------------------------------------------------------------- /@graph/random_planar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/random_planar.m -------------------------------------------------------------------------------- /@graph/random_regular.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/random_regular.m -------------------------------------------------------------------------------- /@graph/random_tree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/random_tree.m -------------------------------------------------------------------------------- /@graph/randxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/randxy.m -------------------------------------------------------------------------------- /@graph/renumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/renumber.m -------------------------------------------------------------------------------- /@graph/resistance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/resistance.m -------------------------------------------------------------------------------- /@graph/resize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/resize.m -------------------------------------------------------------------------------- /@graph/rmxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/rmxy.m -------------------------------------------------------------------------------- /@graph/save.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/save.m -------------------------------------------------------------------------------- /@graph/scale.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/scale.m -------------------------------------------------------------------------------- /@graph/selective.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/selective.m -------------------------------------------------------------------------------- /@graph/set_matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/set_matrix.m -------------------------------------------------------------------------------- /@graph/sgf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/sgf.m -------------------------------------------------------------------------------- /@graph/shiftgraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/shiftgraph.m -------------------------------------------------------------------------------- /@graph/size.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/size.m -------------------------------------------------------------------------------- /@graph/sl2graph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/sl2graph.m -------------------------------------------------------------------------------- /@graph/slot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/slot.m -------------------------------------------------------------------------------- /@graph/sparse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/sparse.m -------------------------------------------------------------------------------- /@graph/split.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/split.m -------------------------------------------------------------------------------- /@graph/sprandom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/sprandom.m -------------------------------------------------------------------------------- /@graph/springxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/springxy.m -------------------------------------------------------------------------------- /@graph/spy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/spy.m -------------------------------------------------------------------------------- /@graph/subsref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/subsref.m -------------------------------------------------------------------------------- /@graph/thresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/thresh.m -------------------------------------------------------------------------------- /@graph/trim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/trim.m -------------------------------------------------------------------------------- /@graph/union.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/union.m -------------------------------------------------------------------------------- /@graph/vertex_degree_sequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/vertex_degree_sequence.m -------------------------------------------------------------------------------- /@graph/wheel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@graph/wheel.m -------------------------------------------------------------------------------- /@partition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@partition/README.md -------------------------------------------------------------------------------- /@partition/array.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@partition/array.m -------------------------------------------------------------------------------- /@partition/check.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@partition/check.m -------------------------------------------------------------------------------- /@partition/display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@partition/display.m -------------------------------------------------------------------------------- /@partition/eq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@partition/eq.m -------------------------------------------------------------------------------- /@partition/merge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@partition/merge.m -------------------------------------------------------------------------------- /@partition/mtimes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@partition/mtimes.m -------------------------------------------------------------------------------- /@partition/ne.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@partition/ne.m -------------------------------------------------------------------------------- /@partition/np.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@partition/np.m -------------------------------------------------------------------------------- /@partition/nv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@partition/nv.m -------------------------------------------------------------------------------- /@partition/partition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@partition/partition.m -------------------------------------------------------------------------------- /@partition/parts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@partition/parts.m -------------------------------------------------------------------------------- /@partition/plus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@partition/plus.m -------------------------------------------------------------------------------- /@partition/size.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@partition/size.m -------------------------------------------------------------------------------- /@partition/subsref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@partition/subsref.m -------------------------------------------------------------------------------- /@permutation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@permutation/README.md -------------------------------------------------------------------------------- /@permutation/array.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@permutation/array.m -------------------------------------------------------------------------------- /@permutation/cycles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@permutation/cycles.m -------------------------------------------------------------------------------- /@permutation/display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@permutation/display.m -------------------------------------------------------------------------------- /@permutation/eq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@permutation/eq.m -------------------------------------------------------------------------------- /@permutation/inv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@permutation/inv.m -------------------------------------------------------------------------------- /@permutation/isempty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@permutation/isempty.m -------------------------------------------------------------------------------- /@permutation/length.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@permutation/length.m -------------------------------------------------------------------------------- /@permutation/longest_cycle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@permutation/longest_cycle.m -------------------------------------------------------------------------------- /@permutation/matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@permutation/matrix.m -------------------------------------------------------------------------------- /@permutation/miss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@permutation/miss.m -------------------------------------------------------------------------------- /@permutation/mpower.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@permutation/mpower.m -------------------------------------------------------------------------------- /@permutation/mtimes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@permutation/mtimes.m -------------------------------------------------------------------------------- /@permutation/ne.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@permutation/ne.m -------------------------------------------------------------------------------- /@permutation/permutation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@permutation/permutation.m -------------------------------------------------------------------------------- /@permutation/random.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@permutation/random.m -------------------------------------------------------------------------------- /@permutation/sign.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@permutation/sign.m -------------------------------------------------------------------------------- /@permutation/size.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@permutation/size.m -------------------------------------------------------------------------------- /@permutation/subsref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/@permutation/subsref.m -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/README.md -------------------------------------------------------------------------------- /check_matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/check_matrix.m -------------------------------------------------------------------------------- /doc/by-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/Makefile -------------------------------------------------------------------------------- /doc/by-example/by-example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/by-example.pdf -------------------------------------------------------------------------------- /doc/by-example/by-example.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/by-example.tex -------------------------------------------------------------------------------- /doc/by-example/figs/bfstree.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/figs/bfstree.pdf -------------------------------------------------------------------------------- /doc/by-example/figs/bucky.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/figs/bucky.pdf -------------------------------------------------------------------------------- /doc/by-example/figs/bucky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/figs/bucky.png -------------------------------------------------------------------------------- /doc/by-example/figs/four-cube.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/figs/four-cube.pdf -------------------------------------------------------------------------------- /doc/by-example/figs/graffle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/figs/graffle.pdf -------------------------------------------------------------------------------- /doc/by-example/figs/grid34.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/figs/grid34.pdf -------------------------------------------------------------------------------- /doc/by-example/figs/ham-cycle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/figs/ham-cycle.pdf -------------------------------------------------------------------------------- /doc/by-example/figs/labeled-path.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/figs/labeled-path.pdf -------------------------------------------------------------------------------- /doc/by-example/figs/parsed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/figs/parsed.pdf -------------------------------------------------------------------------------- /doc/by-example/figs/petersen-vertex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/figs/petersen-vertex.pdf -------------------------------------------------------------------------------- /doc/by-example/figs/petersen.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/figs/petersen.pdf -------------------------------------------------------------------------------- /doc/by-example/figs/product-graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/figs/product-graph.pdf -------------------------------------------------------------------------------- /doc/by-example/figs/randtree-nice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/figs/randtree-nice.pdf -------------------------------------------------------------------------------- /doc/by-example/figs/randtree-yuck.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/figs/randtree-yuck.pdf -------------------------------------------------------------------------------- /doc/by-example/figs/split-grid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/figs/split-grid.pdf -------------------------------------------------------------------------------- /doc/by-example/figs/split-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/figs/split-grid.png -------------------------------------------------------------------------------- /doc/by-example/figs/star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/figs/star.pdf -------------------------------------------------------------------------------- /doc/by-example/superdate.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/by-example/superdate.sty -------------------------------------------------------------------------------- /doc/manual/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/manual/Makefile -------------------------------------------------------------------------------- /doc/manual/matgraph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/manual/matgraph.pdf -------------------------------------------------------------------------------- /doc/manual/matgraph.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/manual/matgraph.tex -------------------------------------------------------------------------------- /doc/manual/superdate.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/doc/manual/superdate.sty -------------------------------------------------------------------------------- /find_available.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/find_available.m -------------------------------------------------------------------------------- /free_all.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/free_all.m -------------------------------------------------------------------------------- /genhtml.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/genhtml.m -------------------------------------------------------------------------------- /gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/gpl.txt -------------------------------------------------------------------------------- /graph_destroy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/graph_destroy.m -------------------------------------------------------------------------------- /graph_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/graph_init.m -------------------------------------------------------------------------------- /graph_system_exists.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/graph_system_exists.m -------------------------------------------------------------------------------- /html/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/alpha.png -------------------------------------------------------------------------------- /html/c++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/c++.png -------------------------------------------------------------------------------- /html/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/c.png -------------------------------------------------------------------------------- /html/demoicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/demoicon.gif -------------------------------------------------------------------------------- /html/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/down.png -------------------------------------------------------------------------------- /html/fortran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/fortran.png -------------------------------------------------------------------------------- /html/hp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/hp.png -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/index.html -------------------------------------------------------------------------------- /html/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/left.png -------------------------------------------------------------------------------- /html/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/linux.png -------------------------------------------------------------------------------- /html/m2html.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/m2html.css -------------------------------------------------------------------------------- /html/matgraph/@graph/across.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/across.html -------------------------------------------------------------------------------- /html/matgraph/@graph/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/add.html -------------------------------------------------------------------------------- /html/matgraph/@graph/alpha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/alpha.html -------------------------------------------------------------------------------- /html/matgraph/@graph/bfstree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/bfstree.html -------------------------------------------------------------------------------- /html/matgraph/@graph/bipartition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/bipartition.html -------------------------------------------------------------------------------- /html/matgraph/@graph/bipmatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/bipmatch.html -------------------------------------------------------------------------------- /html/matgraph/@graph/bridges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/bridges.html -------------------------------------------------------------------------------- /html/matgraph/@graph/bucky.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/bucky.html -------------------------------------------------------------------------------- /html/matgraph/@graph/cartesian.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/cartesian.html -------------------------------------------------------------------------------- /html/matgraph/@graph/cayley.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/cayley.html -------------------------------------------------------------------------------- /html/matgraph/@graph/cdraw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/cdraw.html -------------------------------------------------------------------------------- /html/matgraph/@graph/chromatic_poly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/chromatic_poly.html -------------------------------------------------------------------------------- /html/matgraph/@graph/circulant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/circulant.html -------------------------------------------------------------------------------- /html/matgraph/@graph/clear_edges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/clear_edges.html -------------------------------------------------------------------------------- /html/matgraph/@graph/clear_labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/clear_labels.html -------------------------------------------------------------------------------- /html/matgraph/@graph/color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/color.html -------------------------------------------------------------------------------- /html/matgraph/@graph/complement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/complement.html -------------------------------------------------------------------------------- /html/matgraph/@graph/complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/complete.html -------------------------------------------------------------------------------- /html/matgraph/@graph/component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/component.html -------------------------------------------------------------------------------- /html/matgraph/@graph/components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/components.html -------------------------------------------------------------------------------- /html/matgraph/@graph/contract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/contract.html -------------------------------------------------------------------------------- /html/matgraph/@graph/copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/copy.html -------------------------------------------------------------------------------- /html/matgraph/@graph/copy_labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/copy_labels.html -------------------------------------------------------------------------------- /html/matgraph/@graph/cube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/cube.html -------------------------------------------------------------------------------- /html/matgraph/@graph/cycle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/cycle.html -------------------------------------------------------------------------------- /html/matgraph/@graph/deg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/deg.html -------------------------------------------------------------------------------- /html/matgraph/@graph/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/delete.html -------------------------------------------------------------------------------- /html/matgraph/@graph/dfstree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/dfstree.html -------------------------------------------------------------------------------- /html/matgraph/@graph/diam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/diam.html -------------------------------------------------------------------------------- /html/matgraph/@graph/disjoint_union.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/disjoint_union.html -------------------------------------------------------------------------------- /html/matgraph/@graph/display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/display.html -------------------------------------------------------------------------------- /html/matgraph/@graph/dist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/dist.html -------------------------------------------------------------------------------- /html/matgraph/@graph/distxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/distxy.html -------------------------------------------------------------------------------- /html/matgraph/@graph/dodecahedron.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/dodecahedron.html -------------------------------------------------------------------------------- /html/matgraph/@graph/dom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/dom.html -------------------------------------------------------------------------------- /html/matgraph/@graph/dot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/dot.html -------------------------------------------------------------------------------- /html/matgraph/@graph/draw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/draw.html -------------------------------------------------------------------------------- /html/matgraph/@graph/draw_labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/draw_labels.html -------------------------------------------------------------------------------- /html/matgraph/@graph/edge_color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/edge_color.html -------------------------------------------------------------------------------- /html/matgraph/@graph/edges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/edges.html -------------------------------------------------------------------------------- /html/matgraph/@graph/eig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/eig.html -------------------------------------------------------------------------------- /html/matgraph/@graph/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/embed.html -------------------------------------------------------------------------------- /html/matgraph/@graph/eq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/eq.html -------------------------------------------------------------------------------- /html/matgraph/@graph/euler_trail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/euler_trail.html -------------------------------------------------------------------------------- /html/matgraph/@graph/fast_set_matrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/fast_set_matrix.html -------------------------------------------------------------------------------- /html/matgraph/@graph/fgraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/fgraph.html -------------------------------------------------------------------------------- /html/matgraph/@graph/find_path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/find_path.html -------------------------------------------------------------------------------- /html/matgraph/@graph/free.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/free.html -------------------------------------------------------------------------------- /html/matgraph/@graph/full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/full.html -------------------------------------------------------------------------------- /html/matgraph/@graph/get_label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/get_label.html -------------------------------------------------------------------------------- /html/matgraph/@graph/getxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/getxy.html -------------------------------------------------------------------------------- /html/matgraph/@graph/graffle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/graffle.html -------------------------------------------------------------------------------- /html/matgraph/@graph/graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/graph.html -------------------------------------------------------------------------------- /html/matgraph/@graph/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/grid.html -------------------------------------------------------------------------------- /html/matgraph/@graph/hamiltonian_cycle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/hamiltonian_cycle.html -------------------------------------------------------------------------------- /html/matgraph/@graph/has.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/has.html -------------------------------------------------------------------------------- /html/matgraph/@graph/has_path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/has_path.html -------------------------------------------------------------------------------- /html/matgraph/@graph/hasxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/hasxy.html -------------------------------------------------------------------------------- /html/matgraph/@graph/icosahedron.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/icosahedron.html -------------------------------------------------------------------------------- /html/matgraph/@graph/incidence_matrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/incidence_matrix.html -------------------------------------------------------------------------------- /html/matgraph/@graph/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/index.html -------------------------------------------------------------------------------- /html/matgraph/@graph/induce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/induce.html -------------------------------------------------------------------------------- /html/matgraph/@graph/intersect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/intersect.html -------------------------------------------------------------------------------- /html/matgraph/@graph/interval_graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/interval_graph.html -------------------------------------------------------------------------------- /html/matgraph/@graph/is_labeled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/is_labeled.html -------------------------------------------------------------------------------- /html/matgraph/@graph/isconnected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/isconnected.html -------------------------------------------------------------------------------- /html/matgraph/@graph/isfull.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/isfull.html -------------------------------------------------------------------------------- /html/matgraph/@graph/iso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/iso.html -------------------------------------------------------------------------------- /html/matgraph/@graph/issparse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/issparse.html -------------------------------------------------------------------------------- /html/matgraph/@graph/join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/join.html -------------------------------------------------------------------------------- /html/matgraph/@graph/label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/label.html -------------------------------------------------------------------------------- /html/matgraph/@graph/laplacian.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/laplacian.html -------------------------------------------------------------------------------- /html/matgraph/@graph/ldraw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/ldraw.html -------------------------------------------------------------------------------- /html/matgraph/@graph/line_graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/line_graph.html -------------------------------------------------------------------------------- /html/matgraph/@graph/load.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/load.html -------------------------------------------------------------------------------- /html/matgraph/@graph/make_logical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/make_logical.html -------------------------------------------------------------------------------- /html/matgraph/@graph/match_join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/match_join.html -------------------------------------------------------------------------------- /html/matgraph/@graph/matrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/matrix.html -------------------------------------------------------------------------------- /html/matgraph/@graph/mdsxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/mdsxy.html -------------------------------------------------------------------------------- /html/matgraph/@graph/mobius.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/mobius.html -------------------------------------------------------------------------------- /html/matgraph/@graph/mtimes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/mtimes.html -------------------------------------------------------------------------------- /html/matgraph/@graph/mycielski.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/mycielski.html -------------------------------------------------------------------------------- /html/matgraph/@graph/nauty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/nauty.html -------------------------------------------------------------------------------- /html/matgraph/@graph/ndraw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/ndraw.html -------------------------------------------------------------------------------- /html/matgraph/@graph/ne.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/ne.html -------------------------------------------------------------------------------- /html/matgraph/@graph/neighbors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/neighbors.html -------------------------------------------------------------------------------- /html/matgraph/@graph/nsptrees.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/nsptrees.html -------------------------------------------------------------------------------- /html/matgraph/@graph/nv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/nv.html -------------------------------------------------------------------------------- /html/matgraph/@graph/octahedron.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/octahedron.html -------------------------------------------------------------------------------- /html/matgraph/@graph/omega.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/omega.html -------------------------------------------------------------------------------- /html/matgraph/@graph/paley.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/paley.html -------------------------------------------------------------------------------- /html/matgraph/@graph/path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/path.html -------------------------------------------------------------------------------- /html/matgraph/@graph/petersen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/petersen.html -------------------------------------------------------------------------------- /html/matgraph/@graph/plus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/plus.html -------------------------------------------------------------------------------- /html/matgraph/@graph/prufer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/prufer.html -------------------------------------------------------------------------------- /html/matgraph/@graph/random.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/random.html -------------------------------------------------------------------------------- /html/matgraph/@graph/random_bipartite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/random_bipartite.html -------------------------------------------------------------------------------- /html/matgraph/@graph/random_planar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/random_planar.html -------------------------------------------------------------------------------- /html/matgraph/@graph/random_regular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/random_regular.html -------------------------------------------------------------------------------- /html/matgraph/@graph/random_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/random_tree.html -------------------------------------------------------------------------------- /html/matgraph/@graph/randxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/randxy.html -------------------------------------------------------------------------------- /html/matgraph/@graph/renumber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/renumber.html -------------------------------------------------------------------------------- /html/matgraph/@graph/resistance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/resistance.html -------------------------------------------------------------------------------- /html/matgraph/@graph/resize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/resize.html -------------------------------------------------------------------------------- /html/matgraph/@graph/rmxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/rmxy.html -------------------------------------------------------------------------------- /html/matgraph/@graph/save.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/save.html -------------------------------------------------------------------------------- /html/matgraph/@graph/scale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/scale.html -------------------------------------------------------------------------------- /html/matgraph/@graph/selective.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/selective.html -------------------------------------------------------------------------------- /html/matgraph/@graph/set_matrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/set_matrix.html -------------------------------------------------------------------------------- /html/matgraph/@graph/sgf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/sgf.html -------------------------------------------------------------------------------- /html/matgraph/@graph/shiftgraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/shiftgraph.html -------------------------------------------------------------------------------- /html/matgraph/@graph/size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/size.html -------------------------------------------------------------------------------- /html/matgraph/@graph/sl2graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/sl2graph.html -------------------------------------------------------------------------------- /html/matgraph/@graph/slot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/slot.html -------------------------------------------------------------------------------- /html/matgraph/@graph/sparse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/sparse.html -------------------------------------------------------------------------------- /html/matgraph/@graph/split.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/split.html -------------------------------------------------------------------------------- /html/matgraph/@graph/sprandom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/sprandom.html -------------------------------------------------------------------------------- /html/matgraph/@graph/springxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/springxy.html -------------------------------------------------------------------------------- /html/matgraph/@graph/spy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/spy.html -------------------------------------------------------------------------------- /html/matgraph/@graph/subsref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/subsref.html -------------------------------------------------------------------------------- /html/matgraph/@graph/thresh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/thresh.html -------------------------------------------------------------------------------- /html/matgraph/@graph/trim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/trim.html -------------------------------------------------------------------------------- /html/matgraph/@graph/uminus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/uminus.html -------------------------------------------------------------------------------- /html/matgraph/@graph/union.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/union.html -------------------------------------------------------------------------------- /html/matgraph/@graph/vertex_degree_sequence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/vertex_degree_sequence.html -------------------------------------------------------------------------------- /html/matgraph/@graph/wheel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@graph/wheel.html -------------------------------------------------------------------------------- /html/matgraph/@partition/array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@partition/array.html -------------------------------------------------------------------------------- /html/matgraph/@partition/check.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@partition/check.html -------------------------------------------------------------------------------- /html/matgraph/@partition/display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@partition/display.html -------------------------------------------------------------------------------- /html/matgraph/@partition/eq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@partition/eq.html -------------------------------------------------------------------------------- /html/matgraph/@partition/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@partition/index.html -------------------------------------------------------------------------------- /html/matgraph/@partition/merge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@partition/merge.html -------------------------------------------------------------------------------- /html/matgraph/@partition/mtimes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@partition/mtimes.html -------------------------------------------------------------------------------- /html/matgraph/@partition/ne.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@partition/ne.html -------------------------------------------------------------------------------- /html/matgraph/@partition/np.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@partition/np.html -------------------------------------------------------------------------------- /html/matgraph/@partition/nv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@partition/nv.html -------------------------------------------------------------------------------- /html/matgraph/@partition/partition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@partition/partition.html -------------------------------------------------------------------------------- /html/matgraph/@partition/parts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@partition/parts.html -------------------------------------------------------------------------------- /html/matgraph/@partition/plus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@partition/plus.html -------------------------------------------------------------------------------- /html/matgraph/@partition/size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@partition/size.html -------------------------------------------------------------------------------- /html/matgraph/@partition/subsref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@partition/subsref.html -------------------------------------------------------------------------------- /html/matgraph/@permutation/array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@permutation/array.html -------------------------------------------------------------------------------- /html/matgraph/@permutation/cycles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@permutation/cycles.html -------------------------------------------------------------------------------- /html/matgraph/@permutation/display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@permutation/display.html -------------------------------------------------------------------------------- /html/matgraph/@permutation/eq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@permutation/eq.html -------------------------------------------------------------------------------- /html/matgraph/@permutation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@permutation/index.html -------------------------------------------------------------------------------- /html/matgraph/@permutation/inv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@permutation/inv.html -------------------------------------------------------------------------------- /html/matgraph/@permutation/isempty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@permutation/isempty.html -------------------------------------------------------------------------------- /html/matgraph/@permutation/length.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@permutation/length.html -------------------------------------------------------------------------------- /html/matgraph/@permutation/longest_cycle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@permutation/longest_cycle.html -------------------------------------------------------------------------------- /html/matgraph/@permutation/matrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@permutation/matrix.html -------------------------------------------------------------------------------- /html/matgraph/@permutation/miss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@permutation/miss.html -------------------------------------------------------------------------------- /html/matgraph/@permutation/mpower.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@permutation/mpower.html -------------------------------------------------------------------------------- /html/matgraph/@permutation/mtimes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@permutation/mtimes.html -------------------------------------------------------------------------------- /html/matgraph/@permutation/ne.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@permutation/ne.html -------------------------------------------------------------------------------- /html/matgraph/@permutation/permutation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@permutation/permutation.html -------------------------------------------------------------------------------- /html/matgraph/@permutation/random.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@permutation/random.html -------------------------------------------------------------------------------- /html/matgraph/@permutation/sign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@permutation/sign.html -------------------------------------------------------------------------------- /html/matgraph/@permutation/size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@permutation/size.html -------------------------------------------------------------------------------- /html/matgraph/@permutation/subsref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/@permutation/subsref.html -------------------------------------------------------------------------------- /html/matgraph/check_matrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/check_matrix.html -------------------------------------------------------------------------------- /html/matgraph/find_available.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/find_available.html -------------------------------------------------------------------------------- /html/matgraph/free_all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/free_all.html -------------------------------------------------------------------------------- /html/matgraph/genhtml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/genhtml.html -------------------------------------------------------------------------------- /html/matgraph/graph_destroy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/graph_destroy.html -------------------------------------------------------------------------------- /html/matgraph/graph_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/graph_init.html -------------------------------------------------------------------------------- /html/matgraph/graph_system_exists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/graph_system_exists.html -------------------------------------------------------------------------------- /html/matgraph/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/index.html -------------------------------------------------------------------------------- /html/matgraph/matgraph_version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/matgraph_version.html -------------------------------------------------------------------------------- /html/matgraph/max_available.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/max_available.html -------------------------------------------------------------------------------- /html/matgraph/num_available.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/num_available.html -------------------------------------------------------------------------------- /html/matgraph/set_large.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/set_large.html -------------------------------------------------------------------------------- /html/matgraph/swap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matgraph/swap.html -------------------------------------------------------------------------------- /html/matlabicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/matlabicon.gif -------------------------------------------------------------------------------- /html/mex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/mex.png -------------------------------------------------------------------------------- /html/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/right.png -------------------------------------------------------------------------------- /html/sgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/sgi.png -------------------------------------------------------------------------------- /html/simulinkicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/simulinkicon.gif -------------------------------------------------------------------------------- /html/solaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/solaris.png -------------------------------------------------------------------------------- /html/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/up.png -------------------------------------------------------------------------------- /html/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/html/windows.png -------------------------------------------------------------------------------- /matgraph_version.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/matgraph_version.m -------------------------------------------------------------------------------- /max_available.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/max_available.m -------------------------------------------------------------------------------- /num_available.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/num_available.m -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/cayley_graph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/cayley_graph.m -------------------------------------------------------------------------------- /samples/coloring.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/coloring.m -------------------------------------------------------------------------------- /samples/domination.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/domination.m -------------------------------------------------------------------------------- /samples/edraw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/edraw.m -------------------------------------------------------------------------------- /samples/eulerian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/eulerian.m -------------------------------------------------------------------------------- /samples/hamiltonian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/hamiltonian.m -------------------------------------------------------------------------------- /samples/html/cayley_graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/cayley_graph.html -------------------------------------------------------------------------------- /samples/html/cayley_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/cayley_graph.png -------------------------------------------------------------------------------- /samples/html/cayley_graph_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/cayley_graph_01.png -------------------------------------------------------------------------------- /samples/html/cayley_graph_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/cayley_graph_02.png -------------------------------------------------------------------------------- /samples/html/cayley_graph_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/cayley_graph_03.png -------------------------------------------------------------------------------- /samples/html/cayley_graph_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/cayley_graph_04.png -------------------------------------------------------------------------------- /samples/html/coloring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/coloring.html -------------------------------------------------------------------------------- /samples/html/coloring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/coloring.png -------------------------------------------------------------------------------- /samples/html/coloring_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/coloring_01.png -------------------------------------------------------------------------------- /samples/html/coloring_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/coloring_02.png -------------------------------------------------------------------------------- /samples/html/domination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/domination.html -------------------------------------------------------------------------------- /samples/html/domination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/domination.png -------------------------------------------------------------------------------- /samples/html/domination_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/domination_01.png -------------------------------------------------------------------------------- /samples/html/domination_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/domination_02.png -------------------------------------------------------------------------------- /samples/html/eulerian.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/eulerian.html -------------------------------------------------------------------------------- /samples/html/eulerian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/eulerian.png -------------------------------------------------------------------------------- /samples/html/eulerian_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/eulerian_01.png -------------------------------------------------------------------------------- /samples/html/eulerian_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/eulerian_02.png -------------------------------------------------------------------------------- /samples/html/hamiltonian.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/hamiltonian.html -------------------------------------------------------------------------------- /samples/html/hamiltonian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/hamiltonian.png -------------------------------------------------------------------------------- /samples/html/hamiltonian_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/hamiltonian_01.png -------------------------------------------------------------------------------- /samples/html/isomorphism.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/isomorphism.html -------------------------------------------------------------------------------- /samples/html/isomorphism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/isomorphism.png -------------------------------------------------------------------------------- /samples/html/isomorphism_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/isomorphism_01.png -------------------------------------------------------------------------------- /samples/html/isomorphism_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/isomorphism_02.png -------------------------------------------------------------------------------- /samples/html/isomorphism_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/isomorphism_03.png -------------------------------------------------------------------------------- /samples/html/isomorphism_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/isomorphism_04.png -------------------------------------------------------------------------------- /samples/html/matching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/matching.html -------------------------------------------------------------------------------- /samples/html/matching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/matching.png -------------------------------------------------------------------------------- /samples/html/matching_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/matching_01.png -------------------------------------------------------------------------------- /samples/html/matching_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/matching_02.png -------------------------------------------------------------------------------- /samples/html/matching_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/matching_03.png -------------------------------------------------------------------------------- /samples/html/partn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/partn.html -------------------------------------------------------------------------------- /samples/html/perm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/perm.html -------------------------------------------------------------------------------- /samples/html/ramsey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/ramsey.html -------------------------------------------------------------------------------- /samples/html/ramsey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/ramsey.png -------------------------------------------------------------------------------- /samples/html/ramsey_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/ramsey_01.png -------------------------------------------------------------------------------- /samples/html/ramsey_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/ramsey_02.png -------------------------------------------------------------------------------- /samples/html/spanning_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/spanning_tree.html -------------------------------------------------------------------------------- /samples/html/spanning_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/spanning_tree.png -------------------------------------------------------------------------------- /samples/html/spanning_tree_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/spanning_tree_01.png -------------------------------------------------------------------------------- /samples/html/spanning_tree_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/spanning_tree_02.png -------------------------------------------------------------------------------- /samples/html/splitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/splitter.html -------------------------------------------------------------------------------- /samples/html/splitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/splitter.png -------------------------------------------------------------------------------- /samples/html/splitter_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/splitter_01.png -------------------------------------------------------------------------------- /samples/html/splitter_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/html/splitter_02.png -------------------------------------------------------------------------------- /samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/index.html -------------------------------------------------------------------------------- /samples/isomorphism.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/isomorphism.m -------------------------------------------------------------------------------- /samples/matching.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/matching.m -------------------------------------------------------------------------------- /samples/partn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/partn.m -------------------------------------------------------------------------------- /samples/perm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/perm.m -------------------------------------------------------------------------------- /samples/ramsey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/ramsey.m -------------------------------------------------------------------------------- /samples/spanning_tree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/spanning_tree.m -------------------------------------------------------------------------------- /samples/splitter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/samples/splitter.m -------------------------------------------------------------------------------- /set_large.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/set_large.m -------------------------------------------------------------------------------- /swap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/swap.m -------------------------------------------------------------------------------- /tools/graffle2sgf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/tools/graffle2sgf.py -------------------------------------------------------------------------------- /tools/graph_parser/LineParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/tools/graph_parser/LineParser.cc -------------------------------------------------------------------------------- /tools/graph_parser/LineParser.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/tools/graph_parser/LineParser.hxx -------------------------------------------------------------------------------- /tools/graph_parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/tools/graph_parser/Makefile -------------------------------------------------------------------------------- /tools/graph_parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/tools/graph_parser/README.md -------------------------------------------------------------------------------- /tools/graph_parser/graph_parser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/tools/graph_parser/graph_parser -------------------------------------------------------------------------------- /tools/graph_parser/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/tools/graph_parser/main.cc -------------------------------------------------------------------------------- /tools/graph_parser/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/tools/graph_parser/test -------------------------------------------------------------------------------- /tools/hypergraph_parser/LineParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/tools/hypergraph_parser/LineParser.cc -------------------------------------------------------------------------------- /tools/hypergraph_parser/LineParser.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/tools/hypergraph_parser/LineParser.hxx -------------------------------------------------------------------------------- /tools/hypergraph_parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/tools/hypergraph_parser/Makefile -------------------------------------------------------------------------------- /tools/hypergraph_parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/tools/hypergraph_parser/README.md -------------------------------------------------------------------------------- /tools/hypergraph_parser/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/tools/hypergraph_parser/main.cc -------------------------------------------------------------------------------- /tools/hypergraph_parser/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinerman/matgraph/HEAD/tools/hypergraph_parser/test --------------------------------------------------------------------------------