├── .clang-format ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── Code_Coverage.yml │ ├── Copy_Action_On_WebSite_Branch.yml │ ├── Doxygen.yml │ ├── benchmark.yml │ ├── benchmark_pr.yml │ ├── clang_format.yml │ ├── cmake.yml │ ├── codacy.yml │ ├── codeql.yml │ ├── codesee-arch-diagram.yml │ ├── deploy_site.yml │ ├── flawfinder.yml │ └── gitlab_sync.yml ├── .gitignore ├── .gitmodules ├── CITATION ├── CITATION.cff ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── PaperToTakeIntoConsideration.txt ├── README.md ├── SECURITY.md ├── benchmark ├── BFS_BM.cpp ├── BellmanFord_BM.cpp ├── Boruvka_BM.cpp ├── CMakeLists.txt ├── Connectivity_BM.cpp ├── CycleCheck_BM.cpp ├── DFS_BM.cpp ├── Dial_BM.cpp ├── Dijkstra_BM.cpp ├── Edge_BM.cpp ├── EulerPath_BM.cpp ├── FloydWarshall_BM.cpp ├── FordFulkerson_BM.cpp ├── GraphSlicing_BM.cpp ├── Graph_BM.cpp ├── Kosaraju_BM.cpp ├── Kruskal_BM.cpp ├── Node_BM.cpp ├── Partition_BM.cpp ├── Prim_BM.cpp ├── TopologicalSort_BM.cpp ├── Utilities.hpp ├── dataset │ ├── CitHepPh.csv │ └── README.md ├── main.cpp └── results │ ├── BenchmarkResults_0.4.0.json │ ├── README.md │ └── base.json ├── docs ├── Doxyfile ├── README.md ├── html │ ├── annotated.html │ ├── bc_s.png │ ├── bdwn.png │ ├── classes.html │ ├── closed.png │ ├── d0 │ │ ├── d0d │ │ │ └── classCXXGRAPH_1_1Writer-members.html │ │ ├── d65 │ │ │ └── CXXGraphConfig_8h_source.html │ │ ├── d69 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__inherit__graph.png │ │ ├── d70 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState.html │ │ ├── d7c │ │ │ ├── classCXXGRAPH_1_1UndirectedWeightedEdge__coll__graph.map │ │ │ ├── classCXXGRAPH_1_1UndirectedWeightedEdge__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1UndirectedWeightedEdge__coll__graph.png │ │ ├── dca │ │ │ └── classCXXGRAPH_1_1Reader-members.html │ │ ├── de2 │ │ │ └── structCXXGRAPH_1_1csv__whitespace-members.html │ │ └── df2 │ │ │ └── classCXXGRAPH_1_1Graph.html │ ├── d1 │ │ ├── d0d │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1Globals-members.html │ │ ├── d63 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1HDRF.html │ │ ├── d89 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut.html │ │ ├── db4 │ │ │ └── UndirectedWeightedEdge_8hpp_source.html │ │ └── dbd │ │ │ └── GreedyVertexCut_8hpp_source.html │ ├── d2 │ │ ├── d00 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut.html │ │ ├── d3f │ │ │ └── classCXXGRAPH_1_1Reader.html │ │ ├── d40 │ │ │ └── PartitioningStats_8hpp_source.html │ │ ├── d6c │ │ │ └── classCXXGRAPH_1_1Graph__TS-members.html │ │ ├── d6d │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1EBV.html │ │ ├── d79 │ │ │ └── structCXXGRAPH_1_1Subset__struct-members.html │ │ ├── d99 │ │ │ └── structCXXGRAPH_1_1PrimResult__struct-members.html │ │ ├── de9 │ │ │ └── ThreadSafe_8hpp_source.html │ │ ├── def │ │ │ └── structCXXGRAPH_1_1PartitioningStats__struct.html │ │ └── df2 │ │ │ └── HDRF_8hpp_source.html │ ├── d3 │ │ ├── d4d │ │ │ ├── Typedef_8hpp_source.html │ │ │ └── structCXXGRAPH_1_1MstResult__struct-members.html │ │ ├── d6b │ │ │ └── Record_8hpp_source.html │ │ ├── d91 │ │ │ └── Graph__TS_8hpp_source.html │ │ ├── daa │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut-members.html │ │ ├── dd2 │ │ │ └── classCXXGRAPH_1_1Node.html │ │ └── de1 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1Record.html │ ├── d4 │ │ ├── d1e │ │ │ └── ConstValue_8hpp_source.html │ │ ├── d32 │ │ │ └── classCXXGRAPH_1_1Partition.html │ │ ├── d5f │ │ │ └── classCXXGRAPH_1_1ThreadSafe-members.html │ │ ├── d63 │ │ │ └── structCXXGRAPH_1_1MstResult__struct.html │ │ └── df1 │ │ │ └── structCXXGRAPH_1_1BellmanFordResult__struct.html │ ├── d5 │ │ ├── d0f │ │ │ ├── classCXXGRAPH_1_1DirectedEdge__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1DirectedEdge__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1DirectedEdge__inherit__graph.png │ │ ├── d2e │ │ │ └── classCXXGRAPH_1_1Runnable.html │ │ ├── d34 │ │ │ ├── classCXXGRAPH_1_1DirectedWeightedEdge__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1DirectedWeightedEdge__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1DirectedWeightedEdge__inherit__graph.png │ │ ├── d36 │ │ │ └── PartitionAlgorithm_8hpp_source.html │ │ ├── d57 │ │ │ ├── classCXXGRAPH_1_1DirectedEdge__coll__graph.map │ │ │ ├── classCXXGRAPH_1_1DirectedEdge__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1DirectedEdge__coll__graph.png │ │ ├── d5b │ │ │ └── EBV_8hpp_source.html │ │ ├── d64 │ │ │ └── Globals_8hpp_source.html │ │ ├── d80 │ │ │ └── CXXGraph_8hpp_source.html │ │ ├── d84 │ │ │ └── EdgeBalancedVertexCut_8hpp_source.html │ │ ├── d93 │ │ │ └── structCXXGRAPH_1_1DialResult__struct.html │ │ └── db2 │ │ │ └── UndirectedEdge_8hpp_source.html │ ├── d6 │ │ ├── d29 │ │ │ ├── classCXXGRAPH_1_1Edge__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1Edge__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1Edge__inherit__graph.png │ │ ├── d2c │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1Partition__coll__graph.map │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1Partition__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1Partition__coll__graph.png │ │ ├── d85 │ │ │ ├── DirectedEdge_8hpp_source.html │ │ │ └── PartitionStrategy_8hpp_source.html │ │ └── daa │ │ │ ├── classCXXGRAPH_1_1ThreadSafe__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1ThreadSafe__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1ThreadSafe__inherit__graph.png │ ├── d7 │ │ ├── d1b │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread.html │ │ ├── d24 │ │ │ └── classCXXGRAPH_1_1UndirectedWeightedEdge.html │ │ ├── d2a │ │ │ └── classCXXGRAPH_1_1Edge.html │ │ ├── d41 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1Partition-members.html │ │ ├── d53 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__coll__graph.map │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__coll__graph.png │ │ ├── d54 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut-members.html │ │ ├── d59 │ │ │ └── CoordinatedRecord_8hpp_source.html │ │ ├── d5a │ │ │ ├── classCXXGRAPH_1_1DirectedWeightedEdge__coll__graph.map │ │ │ ├── classCXXGRAPH_1_1DirectedWeightedEdge__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1DirectedWeightedEdge__coll__graph.png │ │ ├── d70 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1PartitioningStats-members.html │ │ ├── d7f │ │ │ └── classCXXGRAPH_1_1Edge-members.html │ │ ├── d9c │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__coll__graph.map │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__coll__graph.png │ │ ├── dc4 │ │ │ └── classCXXGRAPH_1_1Partition-members.html │ │ ├── dc6 │ │ │ └── Node_8hpp_source.html │ │ ├── dd2 │ │ │ ├── classCXXGRAPH_1_1UndirectedEdge__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1UndirectedEdge__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1UndirectedEdge__inherit__graph.png │ │ ├── dde │ │ │ └── classCXXGRAPH_1_1Writer.html │ │ ├── de1 │ │ │ └── ConstString_8hpp_source.html │ │ └── de2 │ │ │ └── classCXXGRAPH_1_1UndirectedWeightedEdge-members.html │ ├── d8 │ │ ├── d2b │ │ │ └── Runnable_8hpp_source.html │ │ ├── d4b │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1Partitioner-members.html │ │ ├── d63 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1Partition__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1Partition__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1Partition__inherit__graph.png │ │ ├── d6d │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1Partitioner.html │ │ │ ├── classCXXGRAPH_1_1UndirectedEdge__coll__graph.map │ │ │ ├── classCXXGRAPH_1_1UndirectedEdge__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1UndirectedEdge__coll__graph.png │ │ ├── d8c │ │ │ └── classCXXGRAPH_1_1UndirectedEdge-members.html │ │ ├── d91 │ │ │ ├── Partitioner_8hpp_source.html │ │ │ └── classCXXGRAPH_1_1Node-members.html │ │ ├── dad │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__coll__graph.map │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__coll__graph.png │ │ └── de8 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1EBV__coll__graph.map │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1EBV__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1EBV__coll__graph.png │ ├── d9 │ │ ├── d11 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1HDRF__coll__graph.map │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1HDRF__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1HDRF__coll__graph.png │ │ ├── d2f │ │ │ └── classCXXGRAPH_1_1ThreadSafe.html │ │ ├── d69 │ │ │ └── Graph_8hpp_source.html │ │ ├── d85 │ │ │ ├── classCXXGRAPH_1_1Runnable__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1Runnable__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1Runnable__inherit__graph.png │ │ ├── d9a │ │ │ └── structCXXGRAPH_1_1DijkstraResult__struct-members.html │ │ └── da1 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread-members.html │ ├── da │ │ ├── d0e │ │ │ └── PartitionerThread_8hpp_source.html │ │ ├── d21 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1PartitionState__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1PartitionState__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1PartitionState__inherit__graph.png │ │ ├── d55 │ │ │ └── classCXXGRAPH_1_1DirectedWeightedEdge.html │ │ ├── d5d │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord-members.html │ │ ├── d62 │ │ │ └── structCXXGRAPH_1_1PartitioningStats__struct-members.html │ │ ├── d71 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1PartitioningStats.html │ │ ├── d9e │ │ │ └── structCXXGRAPH_1_1csv__whitespace.html │ │ ├── da5 │ │ │ └── classCXXGRAPH_1_1Graph__TS.html │ │ ├── daf │ │ │ └── structCXXGRAPH_1_1DialResult__struct-members.html │ │ ├── de0 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__coll__graph.map │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__coll__graph.png │ │ └── dea │ │ │ └── DirectedWeightedEdge_8hpp_source.html │ ├── db │ │ ├── d24 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy-members.html │ │ ├── d31 │ │ │ └── structCXXGRAPH_1_1pair__hash.html │ │ ├── d3e │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1Record__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1Record__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1Record__inherit__graph.png │ │ ├── d52 │ │ │ └── classCXXGRAPH_1_1DirectedWeightedEdge-members.html │ │ ├── d54 │ │ │ └── classCXXGRAPH_1_1Weighted.html │ │ ├── d5b │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1Globals.html │ │ ├── d73 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__inherit__graph.png │ │ ├── ddb │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1EBV-members.html │ │ └── dfe │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__coll__graph.map │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__coll__graph.png │ ├── dc │ │ ├── d04 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1EBV__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1EBV__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1EBV__inherit__graph.png │ │ ├── d4d │ │ │ └── Partition_8hpp_source.html │ │ ├── d50 │ │ │ └── PartitionState_8hpp_source.html │ │ ├── d51 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__inherit__graph.png │ │ ├── d73 │ │ │ ├── classCXXGRAPH_1_1Partition__coll__graph.map │ │ │ ├── classCXXGRAPH_1_1Partition__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1Partition__coll__graph.png │ │ ├── d80 │ │ │ ├── classCXXGRAPH_1_1Graph__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1Graph__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1Graph__inherit__graph.png │ │ ├── d84 │ │ │ └── classCXXGRAPH_1_1DirectedEdge-members.html │ │ ├── d91 │ │ │ └── Edge_8hpp_source.html │ │ ├── da9 │ │ │ └── structCXXGRAPH_1_1FWResult__struct.html │ │ ├── daa │ │ │ └── structCXXGRAPH_1_1Subset__struct.html │ │ ├── db9 │ │ │ ├── classCXXGRAPH_1_1Graph__TS__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1Graph__TS__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1Graph__TS__inherit__graph.png │ │ └── dd5 │ │ │ └── structCXXGRAPH_1_1pair__hash-members.html │ ├── dd │ │ ├── d43 │ │ │ └── classCXXGRAPH_1_1Weighted-members.html │ │ ├── d45 │ │ │ ├── structCXXGRAPH_1_1csv__whitespace__inherit__graph.map │ │ │ ├── structCXXGRAPH_1_1csv__whitespace__inherit__graph.md5 │ │ │ └── structCXXGRAPH_1_1csv__whitespace__inherit__graph.png │ │ ├── d4d │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__inherit__graph.png │ │ ├── d68 │ │ │ ├── classCXXGRAPH_1_1UndirectedWeightedEdge__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1UndirectedWeightedEdge__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1UndirectedWeightedEdge__inherit__graph.png │ │ ├── d69 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1HDRF-members.html │ │ ├── d6c │ │ │ └── structCXXGRAPH_1_1DijkstraResult__struct.html │ │ ├── dc1 │ │ │ └── structCXXGRAPH_1_1FWResult__struct-members.html │ │ └── de6 │ │ │ ├── classCXXGRAPH_1_1Partition__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1Partition__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1Partition__inherit__graph.png │ ├── de │ │ ├── d1d │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord.html │ │ ├── d42 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1PartitionState-members.html │ │ ├── d59 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1Partition.html │ │ ├── d6f │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState-members.html │ │ ├── d77 │ │ │ └── classCXXGRAPH_1_1Graph-members.html │ │ ├── d82 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy__inherit__graph.md5 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy__inherit__graph.png │ │ │ └── classCXXGRAPH_1_1Runnable-members.html │ │ ├── d93 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__inherit__graph.png │ │ ├── dac │ │ │ └── Writer_8hpp_source.html │ │ ├── ddc │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1Record-members.html │ │ ├── de1 │ │ │ └── CoordinatedPartitionState_8hpp_source.html │ │ ├── deb │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy.html │ │ └── df5 │ │ │ └── classCXXGRAPH_1_1DirectedEdge.html │ ├── df │ │ ├── d03 │ │ │ └── Reader_8hpp_source.html │ │ ├── d27 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1HDRF__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1HDRF__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1HDRF__inherit__graph.png │ │ ├── d57 │ │ │ ├── classCXXGRAPH_1_1Graph__TS__coll__graph.map │ │ │ ├── classCXXGRAPH_1_1Graph__TS__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1Graph__TS__coll__graph.png │ │ ├── d6f │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1PartitionState.html │ │ │ └── structCXXGRAPH_1_1BellmanFordResult__struct-members.html │ │ ├── d71 │ │ │ └── classCXXGRAPH_1_1UndirectedEdge.html │ │ ├── dd0 │ │ │ ├── classCXXGRAPH_1_1Weighted__inherit__graph.map │ │ │ ├── classCXXGRAPH_1_1Weighted__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1Weighted__inherit__graph.png │ │ ├── dd3 │ │ │ └── Weighted_8hpp_source.html │ │ ├── ddc │ │ │ ├── structCXXGRAPH_1_1csv__whitespace__coll__graph.map │ │ │ ├── structCXXGRAPH_1_1csv__whitespace__coll__graph.md5 │ │ │ └── structCXXGRAPH_1_1csv__whitespace__coll__graph.png │ │ └── df1 │ │ │ └── structCXXGRAPH_1_1PrimResult__struct.html │ ├── dir_5a1c299fe071d2684abbfdc4f5a71058.html │ ├── dir_664b94fe24dd8b5b31bd73b721ea4656.html │ ├── dir_701c8f06b1c05dfef7c59ec059aa05bd.html │ ├── dir_b647303d7dac632cf2e2685370b563a8.html │ ├── dir_c632fc99025ef8bfa3e097f773c00de6.html │ ├── dir_d192150ed164ec0bf3db1023d7b06f0a.html │ ├── dir_d44c64559bbebec7f509842c48db8b23.html │ ├── doc.png │ ├── doxygen.css │ ├── doxygen.png │ ├── doxygen.svg │ ├── dynsections.js │ ├── files.html │ ├── folderclosed.png │ ├── folderopen.png │ ├── functions.html │ ├── functions_enum.html │ ├── functions_eval.html │ ├── functions_func.html │ ├── functions_type.html │ ├── graph_legend.html │ ├── graph_legend.md5 │ ├── graph_legend.png │ ├── hierarchy.html │ ├── index.html │ ├── inherit_graph_0.map │ ├── inherit_graph_0.md5 │ ├── inherit_graph_0.png │ ├── inherit_graph_1.map │ ├── inherit_graph_1.md5 │ ├── inherit_graph_1.png │ ├── inherit_graph_10.map │ ├── inherit_graph_10.md5 │ ├── inherit_graph_10.png │ ├── inherit_graph_11.map │ ├── inherit_graph_11.md5 │ ├── inherit_graph_11.png │ ├── inherit_graph_12.map │ ├── inherit_graph_12.md5 │ ├── inherit_graph_12.png │ ├── inherit_graph_13.map │ ├── inherit_graph_13.md5 │ ├── inherit_graph_13.png │ ├── inherit_graph_14.map │ ├── inherit_graph_14.md5 │ ├── inherit_graph_14.png │ ├── inherit_graph_15.map │ ├── inherit_graph_15.md5 │ ├── inherit_graph_15.png │ ├── inherit_graph_16.map │ ├── inherit_graph_16.md5 │ ├── inherit_graph_16.png │ ├── inherit_graph_17.map │ ├── inherit_graph_17.md5 │ ├── inherit_graph_17.png │ ├── inherit_graph_18.map │ ├── inherit_graph_18.md5 │ ├── inherit_graph_18.png │ ├── inherit_graph_19.map │ ├── inherit_graph_19.md5 │ ├── inherit_graph_19.png │ ├── inherit_graph_2.map │ ├── inherit_graph_2.md5 │ ├── inherit_graph_2.png │ ├── inherit_graph_20.map │ ├── inherit_graph_20.md5 │ ├── inherit_graph_20.png │ ├── inherit_graph_21.map │ ├── inherit_graph_21.md5 │ ├── inherit_graph_21.png │ ├── inherit_graph_22.map │ ├── inherit_graph_22.md5 │ ├── inherit_graph_22.png │ ├── inherit_graph_23.map │ ├── inherit_graph_23.md5 │ ├── inherit_graph_23.png │ ├── inherit_graph_24.map │ ├── inherit_graph_24.md5 │ ├── inherit_graph_24.png │ ├── inherit_graph_25.map │ ├── inherit_graph_25.md5 │ ├── inherit_graph_25.png │ ├── inherit_graph_26.map │ ├── inherit_graph_26.md5 │ ├── inherit_graph_26.png │ ├── inherit_graph_3.map │ ├── inherit_graph_3.md5 │ ├── inherit_graph_3.png │ ├── inherit_graph_4.map │ ├── inherit_graph_4.md5 │ ├── inherit_graph_4.png │ ├── inherit_graph_5.map │ ├── inherit_graph_5.md5 │ ├── inherit_graph_5.png │ ├── inherit_graph_6.map │ ├── inherit_graph_6.md5 │ ├── inherit_graph_6.png │ ├── inherit_graph_7.map │ ├── inherit_graph_7.md5 │ ├── inherit_graph_7.png │ ├── inherit_graph_8.map │ ├── inherit_graph_8.md5 │ ├── inherit_graph_8.png │ ├── inherit_graph_9.map │ ├── inherit_graph_9.md5 │ ├── inherit_graph_9.png │ ├── inherits.html │ ├── jquery.js │ ├── logo.png │ ├── menu.js │ ├── menudata.js │ ├── nav_f.png │ ├── nav_g.png │ ├── nav_h.png │ ├── open.png │ ├── search │ │ ├── all_0.html │ │ ├── all_0.js │ │ ├── all_1.html │ │ ├── all_1.js │ │ ├── all_10.html │ │ ├── all_10.js │ │ ├── all_11.html │ │ ├── all_11.js │ │ ├── all_2.html │ │ ├── all_2.js │ │ ├── all_3.html │ │ ├── all_3.js │ │ ├── all_4.html │ │ ├── all_4.js │ │ ├── all_5.html │ │ ├── all_5.js │ │ ├── all_6.html │ │ ├── all_6.js │ │ ├── all_7.html │ │ ├── all_7.js │ │ ├── all_8.html │ │ ├── all_8.js │ │ ├── all_9.html │ │ ├── all_9.js │ │ ├── all_a.html │ │ ├── all_a.js │ │ ├── all_b.html │ │ ├── all_b.js │ │ ├── all_c.html │ │ ├── all_c.js │ │ ├── all_d.html │ │ ├── all_d.js │ │ ├── all_e.html │ │ ├── all_e.js │ │ ├── all_f.html │ │ ├── all_f.js │ │ ├── classes_0.html │ │ ├── classes_0.js │ │ ├── classes_1.html │ │ ├── classes_1.js │ │ ├── classes_2.html │ │ ├── classes_2.js │ │ ├── classes_3.html │ │ ├── classes_3.js │ │ ├── classes_4.html │ │ ├── classes_4.js │ │ ├── classes_5.html │ │ ├── classes_5.js │ │ ├── classes_6.html │ │ ├── classes_6.js │ │ ├── classes_7.html │ │ ├── classes_7.js │ │ ├── classes_8.html │ │ ├── classes_8.js │ │ ├── classes_9.html │ │ ├── classes_9.js │ │ ├── classes_a.html │ │ ├── classes_a.js │ │ ├── classes_b.html │ │ ├── classes_b.js │ │ ├── classes_c.html │ │ ├── classes_c.js │ │ ├── classes_d.html │ │ ├── classes_d.js │ │ ├── classes_e.html │ │ ├── classes_e.js │ │ ├── close.png │ │ ├── close.svg │ │ ├── enums_0.html │ │ ├── enums_0.js │ │ ├── enumvalues_0.html │ │ ├── enumvalues_0.js │ │ ├── enumvalues_1.html │ │ ├── enumvalues_1.js │ │ ├── functions_0.html │ │ ├── functions_0.js │ │ ├── functions_1.html │ │ ├── functions_1.js │ │ ├── functions_2.html │ │ ├── functions_2.js │ │ ├── functions_3.html │ │ ├── functions_3.js │ │ ├── functions_4.html │ │ ├── functions_4.js │ │ ├── functions_5.html │ │ ├── functions_5.js │ │ ├── functions_6.html │ │ ├── functions_6.js │ │ ├── functions_7.html │ │ ├── functions_7.js │ │ ├── functions_8.html │ │ ├── functions_8.js │ │ ├── functions_9.html │ │ ├── functions_9.js │ │ ├── functions_a.html │ │ ├── functions_a.js │ │ ├── functions_b.html │ │ ├── functions_b.js │ │ ├── functions_c.html │ │ ├── functions_c.js │ │ ├── mag_sel.png │ │ ├── mag_sel.svg │ │ ├── nomatches.html │ │ ├── search.css │ │ ├── search.js │ │ ├── search_l.png │ │ ├── search_m.png │ │ ├── search_r.png │ │ ├── searchdata.js │ │ ├── typedefs_0.html │ │ ├── typedefs_0.js │ │ ├── typedefs_1.html │ │ └── typedefs_1.js │ ├── splitbar.png │ ├── sync_off.png │ ├── sync_on.png │ ├── tab_a.png │ ├── tab_b.png │ ├── tab_h.png │ ├── tab_s.png │ └── tabs.css ├── latex │ ├── Makefile │ ├── annotated.tex │ ├── d0 │ │ ├── d69 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__inherit__graph.pdf │ │ ├── d70 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState.tex │ │ ├── d7c │ │ │ ├── classCXXGRAPH_1_1UndirectedWeightedEdge__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1UndirectedWeightedEdge__coll__graph.pdf │ │ └── df2 │ │ │ └── classCXXGRAPH_1_1Graph.tex │ ├── d1 │ │ ├── d63 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1HDRF.tex │ │ └── d89 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut.tex │ ├── d2 │ │ ├── d00 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut.tex │ │ ├── d3f │ │ │ └── classCXXGRAPH_1_1Reader.tex │ │ ├── d6d │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1EBV.tex │ │ └── def │ │ │ └── structCXXGRAPH_1_1PartitioningStats__struct.tex │ ├── d3 │ │ ├── dd2 │ │ │ └── classCXXGRAPH_1_1Node.tex │ │ └── de1 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1Record.tex │ ├── d4 │ │ ├── d32 │ │ │ └── classCXXGRAPH_1_1Partition.tex │ │ ├── d63 │ │ │ └── structCXXGRAPH_1_1MstResult__struct.tex │ │ └── df1 │ │ │ └── structCXXGRAPH_1_1BellmanFordResult__struct.tex │ ├── d5 │ │ ├── d0f │ │ │ ├── classCXXGRAPH_1_1DirectedEdge__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1DirectedEdge__inherit__graph.pdf │ │ ├── d2e │ │ │ └── classCXXGRAPH_1_1Runnable.tex │ │ ├── d34 │ │ │ ├── classCXXGRAPH_1_1DirectedWeightedEdge__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1DirectedWeightedEdge__inherit__graph.pdf │ │ ├── d57 │ │ │ ├── classCXXGRAPH_1_1DirectedEdge__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1DirectedEdge__coll__graph.pdf │ │ └── d93 │ │ │ └── structCXXGRAPH_1_1DialResult__struct.tex │ ├── d6 │ │ ├── d29 │ │ │ ├── classCXXGRAPH_1_1Edge__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1Edge__inherit__graph.pdf │ │ ├── d2c │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1Partition__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1Partition__coll__graph.pdf │ │ └── daa │ │ │ ├── classCXXGRAPH_1_1ThreadSafe__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1ThreadSafe__inherit__graph.pdf │ ├── d7 │ │ ├── d1b │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread.tex │ │ ├── d24 │ │ │ └── classCXXGRAPH_1_1UndirectedWeightedEdge.tex │ │ ├── d2a │ │ │ └── classCXXGRAPH_1_1Edge.tex │ │ ├── d53 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__coll__graph.pdf │ │ ├── d5a │ │ │ ├── classCXXGRAPH_1_1DirectedWeightedEdge__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1DirectedWeightedEdge__coll__graph.pdf │ │ ├── d9c │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__coll__graph.pdf │ │ ├── dd2 │ │ │ ├── classCXXGRAPH_1_1UndirectedEdge__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1UndirectedEdge__inherit__graph.pdf │ │ └── dde │ │ │ └── classCXXGRAPH_1_1Writer.tex │ ├── d8 │ │ ├── d63 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1Partition__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1Partition__inherit__graph.pdf │ │ ├── d6d │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1Partitioner.tex │ │ │ ├── classCXXGRAPH_1_1UndirectedEdge__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1UndirectedEdge__coll__graph.pdf │ │ ├── dad │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__coll__graph.pdf │ │ └── de8 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1EBV__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1EBV__coll__graph.pdf │ ├── d9 │ │ ├── d11 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1HDRF__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1HDRF__coll__graph.pdf │ │ ├── d2f │ │ │ └── classCXXGRAPH_1_1ThreadSafe.tex │ │ └── d85 │ │ │ ├── classCXXGRAPH_1_1Runnable__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1Runnable__inherit__graph.pdf │ ├── da │ │ ├── d21 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1PartitionState__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1PartitionState__inherit__graph.pdf │ │ ├── d55 │ │ │ └── classCXXGRAPH_1_1DirectedWeightedEdge.tex │ │ ├── d71 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1PartitioningStats.tex │ │ ├── d9e │ │ │ └── structCXXGRAPH_1_1csv__whitespace.tex │ │ ├── da5 │ │ │ └── classCXXGRAPH_1_1Graph__TS.tex │ │ └── de0 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__coll__graph.pdf │ ├── db │ │ ├── d31 │ │ │ └── structCXXGRAPH_1_1pair__hash.tex │ │ ├── d3e │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1Record__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1Record__inherit__graph.pdf │ │ ├── d54 │ │ │ └── classCXXGRAPH_1_1Weighted.tex │ │ ├── d5b │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1Globals.tex │ │ ├── d73 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__inherit__graph.pdf │ │ └── dfe │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__coll__graph.pdf │ ├── dc │ │ ├── d04 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1EBV__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1EBV__inherit__graph.pdf │ │ ├── d51 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__inherit__graph.pdf │ │ ├── d73 │ │ │ ├── classCXXGRAPH_1_1Partition__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1Partition__coll__graph.pdf │ │ ├── d80 │ │ │ ├── classCXXGRAPH_1_1Graph__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1Graph__inherit__graph.pdf │ │ ├── da9 │ │ │ └── structCXXGRAPH_1_1FWResult__struct.tex │ │ ├── daa │ │ │ └── structCXXGRAPH_1_1Subset__struct.tex │ │ └── db9 │ │ │ ├── classCXXGRAPH_1_1Graph__TS__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1Graph__TS__inherit__graph.pdf │ ├── dd │ │ ├── d45 │ │ │ ├── structCXXGRAPH_1_1csv__whitespace__inherit__graph.md5 │ │ │ └── structCXXGRAPH_1_1csv__whitespace__inherit__graph.pdf │ │ ├── d4d │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__inherit__graph.pdf │ │ ├── d68 │ │ │ ├── classCXXGRAPH_1_1UndirectedWeightedEdge__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1UndirectedWeightedEdge__inherit__graph.pdf │ │ ├── d6c │ │ │ └── structCXXGRAPH_1_1DijkstraResult__struct.tex │ │ └── de6 │ │ │ ├── classCXXGRAPH_1_1Partition__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1Partition__inherit__graph.pdf │ ├── de │ │ ├── d1d │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord.tex │ │ ├── d59 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1Partition.tex │ │ ├── d82 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy__inherit__graph.pdf │ │ ├── d93 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__inherit__graph.pdf │ │ ├── deb │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy.tex │ │ └── df5 │ │ │ └── classCXXGRAPH_1_1DirectedEdge.tex │ ├── df │ │ ├── d27 │ │ │ ├── classCXXGRAPH_1_1PARTITIONING_1_1HDRF__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1HDRF__inherit__graph.pdf │ │ ├── d57 │ │ │ ├── classCXXGRAPH_1_1Graph__TS__coll__graph.md5 │ │ │ └── classCXXGRAPH_1_1Graph__TS__coll__graph.pdf │ │ ├── d6f │ │ │ └── classCXXGRAPH_1_1PARTITIONING_1_1PartitionState.tex │ │ ├── d71 │ │ │ └── classCXXGRAPH_1_1UndirectedEdge.tex │ │ ├── dd0 │ │ │ ├── classCXXGRAPH_1_1Weighted__inherit__graph.md5 │ │ │ └── classCXXGRAPH_1_1Weighted__inherit__graph.pdf │ │ ├── ddc │ │ │ ├── structCXXGRAPH_1_1csv__whitespace__coll__graph.md5 │ │ │ └── structCXXGRAPH_1_1csv__whitespace__coll__graph.pdf │ │ └── df1 │ │ │ └── structCXXGRAPH_1_1PrimResult__struct.tex │ ├── doxygen.sty │ ├── hierarchy.tex │ ├── logo.png │ ├── longtable_doxygen.sty │ ├── refman.tex │ └── tabu_doxygen.sty └── logo.png ├── examples ├── CMakeLists.txt ├── DialExample │ ├── CMakeLists.txt │ └── dial_example.cpp ├── DijkstraExample │ ├── CMakeLists.txt │ └── dijkstra_example.cpp ├── FloydWarshallExample │ ├── CMakeLists.txt │ └── floyd_warshall.cpp ├── NetworkDynamicsExample │ ├── CMakeLists.txt │ └── network_dynamics_example.cpp ├── PartitionExample │ ├── CMakeLists.txt │ └── partition_example.cpp └── PrimExample │ ├── CMakeLists.txt │ └── prim_example.cpp ├── historical └── AGPL-v3.0 │ ├── LICENSE │ └── github.com_ZigRazor_CXXGraph_issues_427.png ├── include └── CXXGraph │ ├── CXXGraph.hpp │ ├── Edge │ ├── DirectedEdge.h │ ├── DirectedEdge_decl.h │ ├── DirectedEdge_impl.hpp │ ├── DirectedWeightedEdge.h │ ├── DirectedWeightedEdge_decl.h │ ├── DirectedWeightedEdge_impl.hpp │ ├── Edge.h │ ├── Edge_decl.h │ ├── Edge_impl.hpp │ ├── UndirectedEdge.h │ ├── UndirectedEdge_decl.h │ ├── UndirectedEdge_impl.hpp │ ├── UndirectedWeightedEdge.h │ ├── UndirectedWeightedEdge_decl.h │ ├── UndirectedWeightedEdge_impl.hpp │ ├── Weighted.h │ ├── Weighted_decl.h │ └── Weighted_impl.hpp │ ├── Graph │ ├── Algorithm │ │ ├── BellmanFord_impl.hpp │ │ ├── BestFirstSearch_impl.hpp │ │ ├── Boruvka_impl.hpp │ │ ├── BreadthFirstSearch_impl.hpp │ │ ├── BronKerbosch_impl.hpp │ │ ├── Connectivity_impl.hpp │ │ ├── CycleDetection_impl.hpp │ │ ├── DepthFirstSearch_impl.hpp │ │ ├── Dial_impl.hpp │ │ ├── Dijkstra_impl.hpp │ │ ├── EulerianPath_impl.hpp │ │ ├── FloydWarshall_impl.hpp │ │ ├── FordFulkerson_impl.hpp │ │ ├── HopcroftKarp_impl.hpp │ │ ├── Kahn_impl.hpp │ │ ├── Kosaraju_impl.hpp │ │ ├── Kruskal_impl.hpp │ │ ├── Prim_impl.hpp │ │ ├── Tarjan_impl.hpp │ │ ├── TopologicalSort_impl.hpp │ │ ├── TransitiveReduction_impl.hpp │ │ └── WelshPowellColoring_impl.hpp │ ├── Graph.h │ ├── Graph_decl.h │ ├── Graph_impl.hpp │ └── IO │ │ ├── IOUtility_impl.hpp │ │ ├── InputOperation_impl.hpp │ │ └── OutputOperation_impl.hpp │ ├── Node │ ├── Node.h │ ├── Node_decl.h │ └── Node_impl.hpp │ ├── Partitioning │ ├── CoordinatedPartitionState.hpp │ ├── CoordinatedRecord.hpp │ ├── EBV.hpp │ ├── EdgeBalancedVertexCut.hpp │ ├── GreedyVertexCut.hpp │ ├── HDRF.hpp │ ├── Partition.hpp │ ├── PartitionAlgorithm.hpp │ ├── PartitionState.hpp │ ├── PartitionStrategy.hpp │ ├── Partitioner.hpp │ ├── PartitionerThread.hpp │ ├── PartitioningStats.hpp │ ├── Record.hpp │ ├── Utility │ │ └── Globals.hpp │ └── WeightBalancedLibra.hpp │ ├── Utility │ ├── ConstString.hpp │ ├── ConstValue.hpp │ ├── PointerHash.hpp │ ├── Reader.hpp │ ├── Runnable.hpp │ ├── SecureRandom.hpp │ ├── ThreadSafe.hpp │ ├── TypeTraits.hpp │ ├── Typedef.hpp │ ├── Writer.hpp │ └── id_t.hpp │ └── version.h.in ├── logos ├── CXXBanner.png ├── CXXGRAPH_Footer.png ├── CXXGraph.gif ├── CXXGraph.png └── CXXGraph_footer.gif ├── packaging ├── deb │ ├── CXXGraph │ │ └── DEBIAN │ │ │ └── control │ ├── clean_deb.sh │ └── make_deb.sh ├── make_packaging.sh ├── rpm │ ├── SPECS │ │ └── CXXGraph.spec │ ├── clean_rpm.sh │ └── make_rpm.sh ├── tarballs.sh ├── targzip.sh └── zip.sh └── test ├── BFSTest.cpp ├── BellmanFordTest.cpp ├── BestFirstSearchTest.cpp ├── BinaryIOTest.cpp ├── BoruvkaTest.cpp ├── BronKerboschTest.cpp ├── CMakeLists.txt ├── ConnectivityTest.cpp ├── CycleCheckTest.cpp ├── DFSTest.cpp ├── DOTTest.cpp ├── DialTest.cpp ├── DijkstraTest.cpp ├── DirectedEdgeTest.cpp ├── DirectedWeightedEdgeTest.cpp ├── EdgeTest.cpp ├── EulerPathTest.cpp ├── FWTest.cpp ├── FloydWarshallTest.cpp ├── FordFulkersonTest.cpp ├── GraphSlicingTest.cpp ├── GraphTest.cpp ├── HopcroftKarpTest.cpp ├── KahnTest.cpp ├── KosarajuTest.cpp ├── KruskalTest.cpp ├── MTXTest.cpp ├── NodeTest.cpp ├── PartitionTest.cpp ├── PrimTest.cpp ├── RWOutputTest.cpp ├── TarjanTest.cpp ├── TopologicalSortTest.cpp ├── TransitiveReductionTest.cpp ├── TypeTraitsTest.hpp ├── UndirectedEdgeTest.cpp ├── UndirectedWeightedEdgeTest.cpp ├── UnionFindTest.cpp ├── Utilities.hpp ├── WelshPowellColoringTest.cpp ├── main.cpp ├── test_dot_directed.dot ├── test_dot_undirected.dot ├── test_dot_weighted.dot ├── test_mtx.mtx └── test_mtx_symmetric.mtx /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/Code_Coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/.github/workflows/Code_Coverage.yml -------------------------------------------------------------------------------- /.github/workflows/Copy_Action_On_WebSite_Branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/.github/workflows/Copy_Action_On_WebSite_Branch.yml -------------------------------------------------------------------------------- /.github/workflows/Doxygen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/.github/workflows/Doxygen.yml -------------------------------------------------------------------------------- /.github/workflows/benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/.github/workflows/benchmark.yml -------------------------------------------------------------------------------- /.github/workflows/benchmark_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/.github/workflows/benchmark_pr.yml -------------------------------------------------------------------------------- /.github/workflows/clang_format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/.github/workflows/clang_format.yml -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.github/workflows/codacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/.github/workflows/codacy.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/codesee-arch-diagram.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/.github/workflows/codesee-arch-diagram.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/.github/workflows/deploy_site.yml -------------------------------------------------------------------------------- /.github/workflows/flawfinder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/.github/workflows/flawfinder.yml -------------------------------------------------------------------------------- /.github/workflows/gitlab_sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/.github/workflows/gitlab_sync.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/CITATION -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/LICENSE -------------------------------------------------------------------------------- /PaperToTakeIntoConsideration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/PaperToTakeIntoConsideration.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/SECURITY.md -------------------------------------------------------------------------------- /benchmark/BFS_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/BFS_BM.cpp -------------------------------------------------------------------------------- /benchmark/BellmanFord_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/BellmanFord_BM.cpp -------------------------------------------------------------------------------- /benchmark/Boruvka_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/Boruvka_BM.cpp -------------------------------------------------------------------------------- /benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /benchmark/Connectivity_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/Connectivity_BM.cpp -------------------------------------------------------------------------------- /benchmark/CycleCheck_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/CycleCheck_BM.cpp -------------------------------------------------------------------------------- /benchmark/DFS_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/DFS_BM.cpp -------------------------------------------------------------------------------- /benchmark/Dial_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/Dial_BM.cpp -------------------------------------------------------------------------------- /benchmark/Dijkstra_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/Dijkstra_BM.cpp -------------------------------------------------------------------------------- /benchmark/Edge_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/Edge_BM.cpp -------------------------------------------------------------------------------- /benchmark/EulerPath_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/EulerPath_BM.cpp -------------------------------------------------------------------------------- /benchmark/FloydWarshall_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/FloydWarshall_BM.cpp -------------------------------------------------------------------------------- /benchmark/FordFulkerson_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/FordFulkerson_BM.cpp -------------------------------------------------------------------------------- /benchmark/GraphSlicing_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/GraphSlicing_BM.cpp -------------------------------------------------------------------------------- /benchmark/Graph_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/Graph_BM.cpp -------------------------------------------------------------------------------- /benchmark/Kosaraju_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/Kosaraju_BM.cpp -------------------------------------------------------------------------------- /benchmark/Kruskal_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/Kruskal_BM.cpp -------------------------------------------------------------------------------- /benchmark/Node_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/Node_BM.cpp -------------------------------------------------------------------------------- /benchmark/Partition_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/Partition_BM.cpp -------------------------------------------------------------------------------- /benchmark/Prim_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/Prim_BM.cpp -------------------------------------------------------------------------------- /benchmark/TopologicalSort_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/TopologicalSort_BM.cpp -------------------------------------------------------------------------------- /benchmark/Utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/Utilities.hpp -------------------------------------------------------------------------------- /benchmark/dataset/CitHepPh.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/dataset/CitHepPh.csv -------------------------------------------------------------------------------- /benchmark/dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/dataset/README.md -------------------------------------------------------------------------------- /benchmark/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/main.cpp -------------------------------------------------------------------------------- /benchmark/results/BenchmarkResults_0.4.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/results/BenchmarkResults_0.4.0.json -------------------------------------------------------------------------------- /benchmark/results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/results/README.md -------------------------------------------------------------------------------- /benchmark/results/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/benchmark/results/base.json -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/annotated.html -------------------------------------------------------------------------------- /docs/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/bc_s.png -------------------------------------------------------------------------------- /docs/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/bdwn.png -------------------------------------------------------------------------------- /docs/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/classes.html -------------------------------------------------------------------------------- /docs/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/closed.png -------------------------------------------------------------------------------- /docs/html/d0/d0d/classCXXGRAPH_1_1Writer-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d0/d0d/classCXXGRAPH_1_1Writer-members.html -------------------------------------------------------------------------------- /docs/html/d0/d65/CXXGraphConfig_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d0/d65/CXXGraphConfig_8h_source.html -------------------------------------------------------------------------------- /docs/html/d0/d69/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d0/d69/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/d0/d69/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 7b2859755e79dd0c86a1a9919e3e96cc -------------------------------------------------------------------------------- /docs/html/d0/d69/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d0/d69/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/d0/d70/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d0/d70/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState.html -------------------------------------------------------------------------------- /docs/html/d0/d7c/classCXXGRAPH_1_1UndirectedWeightedEdge__coll__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d0/d7c/classCXXGRAPH_1_1UndirectedWeightedEdge__coll__graph.map -------------------------------------------------------------------------------- /docs/html/d0/d7c/classCXXGRAPH_1_1UndirectedWeightedEdge__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 592c3a0f4df958b087b2d7b2bb52f913 -------------------------------------------------------------------------------- /docs/html/d0/d7c/classCXXGRAPH_1_1UndirectedWeightedEdge__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d0/d7c/classCXXGRAPH_1_1UndirectedWeightedEdge__coll__graph.png -------------------------------------------------------------------------------- /docs/html/d0/dca/classCXXGRAPH_1_1Reader-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d0/dca/classCXXGRAPH_1_1Reader-members.html -------------------------------------------------------------------------------- /docs/html/d0/de2/structCXXGRAPH_1_1csv__whitespace-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d0/de2/structCXXGRAPH_1_1csv__whitespace-members.html -------------------------------------------------------------------------------- /docs/html/d0/df2/classCXXGRAPH_1_1Graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d0/df2/classCXXGRAPH_1_1Graph.html -------------------------------------------------------------------------------- /docs/html/d1/d0d/classCXXGRAPH_1_1PARTITIONING_1_1Globals-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d1/d0d/classCXXGRAPH_1_1PARTITIONING_1_1Globals-members.html -------------------------------------------------------------------------------- /docs/html/d1/d63/classCXXGRAPH_1_1PARTITIONING_1_1HDRF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d1/d63/classCXXGRAPH_1_1PARTITIONING_1_1HDRF.html -------------------------------------------------------------------------------- /docs/html/d1/d89/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d1/d89/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut.html -------------------------------------------------------------------------------- /docs/html/d1/db4/UndirectedWeightedEdge_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d1/db4/UndirectedWeightedEdge_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d1/dbd/GreedyVertexCut_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d1/dbd/GreedyVertexCut_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d2/d00/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d2/d00/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut.html -------------------------------------------------------------------------------- /docs/html/d2/d3f/classCXXGRAPH_1_1Reader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d2/d3f/classCXXGRAPH_1_1Reader.html -------------------------------------------------------------------------------- /docs/html/d2/d40/PartitioningStats_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d2/d40/PartitioningStats_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d2/d6c/classCXXGRAPH_1_1Graph__TS-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d2/d6c/classCXXGRAPH_1_1Graph__TS-members.html -------------------------------------------------------------------------------- /docs/html/d2/d6d/classCXXGRAPH_1_1PARTITIONING_1_1EBV.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d2/d6d/classCXXGRAPH_1_1PARTITIONING_1_1EBV.html -------------------------------------------------------------------------------- /docs/html/d2/d79/structCXXGRAPH_1_1Subset__struct-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d2/d79/structCXXGRAPH_1_1Subset__struct-members.html -------------------------------------------------------------------------------- /docs/html/d2/d99/structCXXGRAPH_1_1PrimResult__struct-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d2/d99/structCXXGRAPH_1_1PrimResult__struct-members.html -------------------------------------------------------------------------------- /docs/html/d2/de9/ThreadSafe_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d2/de9/ThreadSafe_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d2/def/structCXXGRAPH_1_1PartitioningStats__struct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d2/def/structCXXGRAPH_1_1PartitioningStats__struct.html -------------------------------------------------------------------------------- /docs/html/d2/df2/HDRF_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d2/df2/HDRF_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d3/d4d/Typedef_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d3/d4d/Typedef_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d3/d4d/structCXXGRAPH_1_1MstResult__struct-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d3/d4d/structCXXGRAPH_1_1MstResult__struct-members.html -------------------------------------------------------------------------------- /docs/html/d3/d6b/Record_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d3/d6b/Record_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d3/d91/Graph__TS_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d3/d91/Graph__TS_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d3/daa/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d3/daa/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut-members.html -------------------------------------------------------------------------------- /docs/html/d3/dd2/classCXXGRAPH_1_1Node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d3/dd2/classCXXGRAPH_1_1Node.html -------------------------------------------------------------------------------- /docs/html/d3/de1/classCXXGRAPH_1_1PARTITIONING_1_1Record.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d3/de1/classCXXGRAPH_1_1PARTITIONING_1_1Record.html -------------------------------------------------------------------------------- /docs/html/d4/d1e/ConstValue_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d4/d1e/ConstValue_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d4/d32/classCXXGRAPH_1_1Partition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d4/d32/classCXXGRAPH_1_1Partition.html -------------------------------------------------------------------------------- /docs/html/d4/d5f/classCXXGRAPH_1_1ThreadSafe-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d4/d5f/classCXXGRAPH_1_1ThreadSafe-members.html -------------------------------------------------------------------------------- /docs/html/d4/d63/structCXXGRAPH_1_1MstResult__struct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d4/d63/structCXXGRAPH_1_1MstResult__struct.html -------------------------------------------------------------------------------- /docs/html/d4/df1/structCXXGRAPH_1_1BellmanFordResult__struct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d4/df1/structCXXGRAPH_1_1BellmanFordResult__struct.html -------------------------------------------------------------------------------- /docs/html/d5/d0f/classCXXGRAPH_1_1DirectedEdge__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d5/d0f/classCXXGRAPH_1_1DirectedEdge__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/d5/d0f/classCXXGRAPH_1_1DirectedEdge__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | eb77b01cc5283b3888f89ebf50435be4 -------------------------------------------------------------------------------- /docs/html/d5/d0f/classCXXGRAPH_1_1DirectedEdge__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d5/d0f/classCXXGRAPH_1_1DirectedEdge__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/d5/d2e/classCXXGRAPH_1_1Runnable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d5/d2e/classCXXGRAPH_1_1Runnable.html -------------------------------------------------------------------------------- /docs/html/d5/d34/classCXXGRAPH_1_1DirectedWeightedEdge__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d5/d34/classCXXGRAPH_1_1DirectedWeightedEdge__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/d5/d34/classCXXGRAPH_1_1DirectedWeightedEdge__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | d297b4e31fbdcdd0b4eab89284ecaf9d -------------------------------------------------------------------------------- /docs/html/d5/d34/classCXXGRAPH_1_1DirectedWeightedEdge__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d5/d34/classCXXGRAPH_1_1DirectedWeightedEdge__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/d5/d36/PartitionAlgorithm_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d5/d36/PartitionAlgorithm_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d5/d57/classCXXGRAPH_1_1DirectedEdge__coll__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d5/d57/classCXXGRAPH_1_1DirectedEdge__coll__graph.map -------------------------------------------------------------------------------- /docs/html/d5/d57/classCXXGRAPH_1_1DirectedEdge__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 3f3798779a7d776f08db4c121c2635ae -------------------------------------------------------------------------------- /docs/html/d5/d57/classCXXGRAPH_1_1DirectedEdge__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d5/d57/classCXXGRAPH_1_1DirectedEdge__coll__graph.png -------------------------------------------------------------------------------- /docs/html/d5/d5b/EBV_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d5/d5b/EBV_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d5/d64/Globals_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d5/d64/Globals_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d5/d80/CXXGraph_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d5/d80/CXXGraph_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d5/d84/EdgeBalancedVertexCut_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d5/d84/EdgeBalancedVertexCut_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d5/d93/structCXXGRAPH_1_1DialResult__struct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d5/d93/structCXXGRAPH_1_1DialResult__struct.html -------------------------------------------------------------------------------- /docs/html/d5/db2/UndirectedEdge_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d5/db2/UndirectedEdge_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d6/d29/classCXXGRAPH_1_1Edge__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d6/d29/classCXXGRAPH_1_1Edge__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/d6/d29/classCXXGRAPH_1_1Edge__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 4690aa7a2c4b4932aa66295ac9ddd9e2 -------------------------------------------------------------------------------- /docs/html/d6/d29/classCXXGRAPH_1_1Edge__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d6/d29/classCXXGRAPH_1_1Edge__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/d6/d2c/classCXXGRAPH_1_1PARTITIONING_1_1Partition__coll__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d6/d2c/classCXXGRAPH_1_1PARTITIONING_1_1Partition__coll__graph.map -------------------------------------------------------------------------------- /docs/html/d6/d2c/classCXXGRAPH_1_1PARTITIONING_1_1Partition__coll__graph.md5: -------------------------------------------------------------------------------- 1 | aa7e9bcf9adf5f0ec33e547fa0857a92 -------------------------------------------------------------------------------- /docs/html/d6/d2c/classCXXGRAPH_1_1PARTITIONING_1_1Partition__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d6/d2c/classCXXGRAPH_1_1PARTITIONING_1_1Partition__coll__graph.png -------------------------------------------------------------------------------- /docs/html/d6/d85/DirectedEdge_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d6/d85/DirectedEdge_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d6/d85/PartitionStrategy_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d6/d85/PartitionStrategy_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d6/daa/classCXXGRAPH_1_1ThreadSafe__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d6/daa/classCXXGRAPH_1_1ThreadSafe__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/d6/daa/classCXXGRAPH_1_1ThreadSafe__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | b7d6afe8e937848e65aeb605c3a2f4e2 -------------------------------------------------------------------------------- /docs/html/d6/daa/classCXXGRAPH_1_1ThreadSafe__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d6/daa/classCXXGRAPH_1_1ThreadSafe__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/d7/d1b/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/d1b/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread.html -------------------------------------------------------------------------------- /docs/html/d7/d24/classCXXGRAPH_1_1UndirectedWeightedEdge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/d24/classCXXGRAPH_1_1UndirectedWeightedEdge.html -------------------------------------------------------------------------------- /docs/html/d7/d2a/classCXXGRAPH_1_1Edge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/d2a/classCXXGRAPH_1_1Edge.html -------------------------------------------------------------------------------- /docs/html/d7/d41/classCXXGRAPH_1_1PARTITIONING_1_1Partition-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/d41/classCXXGRAPH_1_1PARTITIONING_1_1Partition-members.html -------------------------------------------------------------------------------- /docs/html/d7/d53/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__coll__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/d53/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__coll__graph.map -------------------------------------------------------------------------------- /docs/html/d7/d53/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 9d354ba15ca1b0800c755b98392db790 -------------------------------------------------------------------------------- /docs/html/d7/d53/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/d53/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__coll__graph.png -------------------------------------------------------------------------------- /docs/html/d7/d54/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/d54/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut-members.html -------------------------------------------------------------------------------- /docs/html/d7/d59/CoordinatedRecord_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/d59/CoordinatedRecord_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d7/d5a/classCXXGRAPH_1_1DirectedWeightedEdge__coll__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/d5a/classCXXGRAPH_1_1DirectedWeightedEdge__coll__graph.map -------------------------------------------------------------------------------- /docs/html/d7/d5a/classCXXGRAPH_1_1DirectedWeightedEdge__coll__graph.md5: -------------------------------------------------------------------------------- 1 | d297b4e31fbdcdd0b4eab89284ecaf9d -------------------------------------------------------------------------------- /docs/html/d7/d5a/classCXXGRAPH_1_1DirectedWeightedEdge__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/d5a/classCXXGRAPH_1_1DirectedWeightedEdge__coll__graph.png -------------------------------------------------------------------------------- /docs/html/d7/d70/classCXXGRAPH_1_1PARTITIONING_1_1PartitioningStats-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/d70/classCXXGRAPH_1_1PARTITIONING_1_1PartitioningStats-members.html -------------------------------------------------------------------------------- /docs/html/d7/d7f/classCXXGRAPH_1_1Edge-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/d7f/classCXXGRAPH_1_1Edge-members.html -------------------------------------------------------------------------------- /docs/html/d7/d9c/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__coll__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/d9c/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__coll__graph.map -------------------------------------------------------------------------------- /docs/html/d7/d9c/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__coll__graph.md5: -------------------------------------------------------------------------------- 1 | f988fd207143fb83cff961a36345049d -------------------------------------------------------------------------------- /docs/html/d7/d9c/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/d9c/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__coll__graph.png -------------------------------------------------------------------------------- /docs/html/d7/dc4/classCXXGRAPH_1_1Partition-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/dc4/classCXXGRAPH_1_1Partition-members.html -------------------------------------------------------------------------------- /docs/html/d7/dc6/Node_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/dc6/Node_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d7/dd2/classCXXGRAPH_1_1UndirectedEdge__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/dd2/classCXXGRAPH_1_1UndirectedEdge__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/d7/dd2/classCXXGRAPH_1_1UndirectedEdge__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | f1c37ad77ec359f670765ad5813b7cee -------------------------------------------------------------------------------- /docs/html/d7/dd2/classCXXGRAPH_1_1UndirectedEdge__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/dd2/classCXXGRAPH_1_1UndirectedEdge__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/d7/dde/classCXXGRAPH_1_1Writer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/dde/classCXXGRAPH_1_1Writer.html -------------------------------------------------------------------------------- /docs/html/d7/de1/ConstString_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/de1/ConstString_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d7/de2/classCXXGRAPH_1_1UndirectedWeightedEdge-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d7/de2/classCXXGRAPH_1_1UndirectedWeightedEdge-members.html -------------------------------------------------------------------------------- /docs/html/d8/d2b/Runnable_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d8/d2b/Runnable_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d8/d4b/classCXXGRAPH_1_1PARTITIONING_1_1Partitioner-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d8/d4b/classCXXGRAPH_1_1PARTITIONING_1_1Partitioner-members.html -------------------------------------------------------------------------------- /docs/html/d8/d63/classCXXGRAPH_1_1PARTITIONING_1_1Partition__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d8/d63/classCXXGRAPH_1_1PARTITIONING_1_1Partition__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/d8/d63/classCXXGRAPH_1_1PARTITIONING_1_1Partition__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | aa7e9bcf9adf5f0ec33e547fa0857a92 -------------------------------------------------------------------------------- /docs/html/d8/d63/classCXXGRAPH_1_1PARTITIONING_1_1Partition__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d8/d63/classCXXGRAPH_1_1PARTITIONING_1_1Partition__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/d8/d6d/classCXXGRAPH_1_1PARTITIONING_1_1Partitioner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d8/d6d/classCXXGRAPH_1_1PARTITIONING_1_1Partitioner.html -------------------------------------------------------------------------------- /docs/html/d8/d6d/classCXXGRAPH_1_1UndirectedEdge__coll__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d8/d6d/classCXXGRAPH_1_1UndirectedEdge__coll__graph.map -------------------------------------------------------------------------------- /docs/html/d8/d6d/classCXXGRAPH_1_1UndirectedEdge__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 3c0e708fd9ab82ecbb1039204b082fe0 -------------------------------------------------------------------------------- /docs/html/d8/d6d/classCXXGRAPH_1_1UndirectedEdge__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d8/d6d/classCXXGRAPH_1_1UndirectedEdge__coll__graph.png -------------------------------------------------------------------------------- /docs/html/d8/d8c/classCXXGRAPH_1_1UndirectedEdge-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d8/d8c/classCXXGRAPH_1_1UndirectedEdge-members.html -------------------------------------------------------------------------------- /docs/html/d8/d91/Partitioner_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d8/d91/Partitioner_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d8/d91/classCXXGRAPH_1_1Node-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d8/d91/classCXXGRAPH_1_1Node-members.html -------------------------------------------------------------------------------- /docs/html/d8/dad/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__coll__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d8/dad/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__coll__graph.map -------------------------------------------------------------------------------- /docs/html/d8/dad/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__coll__graph.md5: -------------------------------------------------------------------------------- 1 | df177e03bb17e95d798ac79b4c93d980 -------------------------------------------------------------------------------- /docs/html/d8/dad/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d8/dad/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__coll__graph.png -------------------------------------------------------------------------------- /docs/html/d8/de8/classCXXGRAPH_1_1PARTITIONING_1_1EBV__coll__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d8/de8/classCXXGRAPH_1_1PARTITIONING_1_1EBV__coll__graph.map -------------------------------------------------------------------------------- /docs/html/d8/de8/classCXXGRAPH_1_1PARTITIONING_1_1EBV__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 5057165206a9a28ab678e917b951aa76 -------------------------------------------------------------------------------- /docs/html/d8/de8/classCXXGRAPH_1_1PARTITIONING_1_1EBV__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d8/de8/classCXXGRAPH_1_1PARTITIONING_1_1EBV__coll__graph.png -------------------------------------------------------------------------------- /docs/html/d9/d11/classCXXGRAPH_1_1PARTITIONING_1_1HDRF__coll__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d9/d11/classCXXGRAPH_1_1PARTITIONING_1_1HDRF__coll__graph.map -------------------------------------------------------------------------------- /docs/html/d9/d11/classCXXGRAPH_1_1PARTITIONING_1_1HDRF__coll__graph.md5: -------------------------------------------------------------------------------- 1 | e35bcf69e519fb6fd4498b342cf41555 -------------------------------------------------------------------------------- /docs/html/d9/d11/classCXXGRAPH_1_1PARTITIONING_1_1HDRF__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d9/d11/classCXXGRAPH_1_1PARTITIONING_1_1HDRF__coll__graph.png -------------------------------------------------------------------------------- /docs/html/d9/d2f/classCXXGRAPH_1_1ThreadSafe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d9/d2f/classCXXGRAPH_1_1ThreadSafe.html -------------------------------------------------------------------------------- /docs/html/d9/d69/Graph_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d9/d69/Graph_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/d9/d85/classCXXGRAPH_1_1Runnable__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d9/d85/classCXXGRAPH_1_1Runnable__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/d9/d85/classCXXGRAPH_1_1Runnable__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 63e03600520e8fb8ce1246a54d9fb491 -------------------------------------------------------------------------------- /docs/html/d9/d85/classCXXGRAPH_1_1Runnable__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d9/d85/classCXXGRAPH_1_1Runnable__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/d9/d9a/structCXXGRAPH_1_1DijkstraResult__struct-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d9/d9a/structCXXGRAPH_1_1DijkstraResult__struct-members.html -------------------------------------------------------------------------------- /docs/html/d9/da1/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/d9/da1/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread-members.html -------------------------------------------------------------------------------- /docs/html/da/d0e/PartitionerThread_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/da/d0e/PartitionerThread_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/da/d21/classCXXGRAPH_1_1PARTITIONING_1_1PartitionState__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/da/d21/classCXXGRAPH_1_1PARTITIONING_1_1PartitionState__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/da/d21/classCXXGRAPH_1_1PARTITIONING_1_1PartitionState__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | f3f811bb34b42b5a3b1762577c5fe63c -------------------------------------------------------------------------------- /docs/html/da/d21/classCXXGRAPH_1_1PARTITIONING_1_1PartitionState__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/da/d21/classCXXGRAPH_1_1PARTITIONING_1_1PartitionState__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/da/d55/classCXXGRAPH_1_1DirectedWeightedEdge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/da/d55/classCXXGRAPH_1_1DirectedWeightedEdge.html -------------------------------------------------------------------------------- /docs/html/da/d5d/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/da/d5d/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord-members.html -------------------------------------------------------------------------------- /docs/html/da/d62/structCXXGRAPH_1_1PartitioningStats__struct-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/da/d62/structCXXGRAPH_1_1PartitioningStats__struct-members.html -------------------------------------------------------------------------------- /docs/html/da/d71/classCXXGRAPH_1_1PARTITIONING_1_1PartitioningStats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/da/d71/classCXXGRAPH_1_1PARTITIONING_1_1PartitioningStats.html -------------------------------------------------------------------------------- /docs/html/da/d9e/structCXXGRAPH_1_1csv__whitespace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/da/d9e/structCXXGRAPH_1_1csv__whitespace.html -------------------------------------------------------------------------------- /docs/html/da/da5/classCXXGRAPH_1_1Graph__TS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/da/da5/classCXXGRAPH_1_1Graph__TS.html -------------------------------------------------------------------------------- /docs/html/da/daf/structCXXGRAPH_1_1DialResult__struct-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/da/daf/structCXXGRAPH_1_1DialResult__struct-members.html -------------------------------------------------------------------------------- /docs/html/da/de0/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__coll__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/da/de0/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__coll__graph.map -------------------------------------------------------------------------------- /docs/html/da/de0/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 7b2859755e79dd0c86a1a9919e3e96cc -------------------------------------------------------------------------------- /docs/html/da/de0/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/da/de0/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__coll__graph.png -------------------------------------------------------------------------------- /docs/html/da/dea/DirectedWeightedEdge_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/da/dea/DirectedWeightedEdge_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/db/d24/classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/db/d24/classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy-members.html -------------------------------------------------------------------------------- /docs/html/db/d31/structCXXGRAPH_1_1pair__hash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/db/d31/structCXXGRAPH_1_1pair__hash.html -------------------------------------------------------------------------------- /docs/html/db/d3e/classCXXGRAPH_1_1PARTITIONING_1_1Record__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/db/d3e/classCXXGRAPH_1_1PARTITIONING_1_1Record__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/db/d3e/classCXXGRAPH_1_1PARTITIONING_1_1Record__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | a0580315b1b8ceb654d089cd05b31579 -------------------------------------------------------------------------------- /docs/html/db/d3e/classCXXGRAPH_1_1PARTITIONING_1_1Record__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/db/d3e/classCXXGRAPH_1_1PARTITIONING_1_1Record__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/db/d52/classCXXGRAPH_1_1DirectedWeightedEdge-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/db/d52/classCXXGRAPH_1_1DirectedWeightedEdge-members.html -------------------------------------------------------------------------------- /docs/html/db/d54/classCXXGRAPH_1_1Weighted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/db/d54/classCXXGRAPH_1_1Weighted.html -------------------------------------------------------------------------------- /docs/html/db/d5b/classCXXGRAPH_1_1PARTITIONING_1_1Globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/db/d5b/classCXXGRAPH_1_1PARTITIONING_1_1Globals.html -------------------------------------------------------------------------------- /docs/html/db/d73/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/db/d73/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/db/d73/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | ed0ebfd40d50cc6db283a13f5ce9ffc0 -------------------------------------------------------------------------------- /docs/html/db/d73/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/db/d73/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/db/ddb/classCXXGRAPH_1_1PARTITIONING_1_1EBV-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/db/ddb/classCXXGRAPH_1_1PARTITIONING_1_1EBV-members.html -------------------------------------------------------------------------------- /docs/html/db/dfe/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__coll__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/db/dfe/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__coll__graph.map -------------------------------------------------------------------------------- /docs/html/db/dfe/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__coll__graph.md5: -------------------------------------------------------------------------------- 1 | ed0ebfd40d50cc6db283a13f5ce9ffc0 -------------------------------------------------------------------------------- /docs/html/db/dfe/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/db/dfe/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__coll__graph.png -------------------------------------------------------------------------------- /docs/html/dc/d04/classCXXGRAPH_1_1PARTITIONING_1_1EBV__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dc/d04/classCXXGRAPH_1_1PARTITIONING_1_1EBV__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/dc/d04/classCXXGRAPH_1_1PARTITIONING_1_1EBV__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 5057165206a9a28ab678e917b951aa76 -------------------------------------------------------------------------------- /docs/html/dc/d04/classCXXGRAPH_1_1PARTITIONING_1_1EBV__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dc/d04/classCXXGRAPH_1_1PARTITIONING_1_1EBV__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/dc/d4d/Partition_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dc/d4d/Partition_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/dc/d50/PartitionState_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dc/d50/PartitionState_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/dc/d51/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dc/d51/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/dc/d51/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | f988fd207143fb83cff961a36345049d -------------------------------------------------------------------------------- /docs/html/dc/d51/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dc/d51/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/dc/d73/classCXXGRAPH_1_1Partition__coll__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dc/d73/classCXXGRAPH_1_1Partition__coll__graph.map -------------------------------------------------------------------------------- /docs/html/dc/d73/classCXXGRAPH_1_1Partition__coll__graph.md5: -------------------------------------------------------------------------------- 1 | ee898ffa73c3db022fc7557784261426 -------------------------------------------------------------------------------- /docs/html/dc/d73/classCXXGRAPH_1_1Partition__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dc/d73/classCXXGRAPH_1_1Partition__coll__graph.png -------------------------------------------------------------------------------- /docs/html/dc/d80/classCXXGRAPH_1_1Graph__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dc/d80/classCXXGRAPH_1_1Graph__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/dc/d80/classCXXGRAPH_1_1Graph__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 3b7c778388497e6612a16e043ac413a2 -------------------------------------------------------------------------------- /docs/html/dc/d80/classCXXGRAPH_1_1Graph__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dc/d80/classCXXGRAPH_1_1Graph__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/dc/d84/classCXXGRAPH_1_1DirectedEdge-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dc/d84/classCXXGRAPH_1_1DirectedEdge-members.html -------------------------------------------------------------------------------- /docs/html/dc/d91/Edge_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dc/d91/Edge_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/dc/da9/structCXXGRAPH_1_1FWResult__struct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dc/da9/structCXXGRAPH_1_1FWResult__struct.html -------------------------------------------------------------------------------- /docs/html/dc/daa/structCXXGRAPH_1_1Subset__struct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dc/daa/structCXXGRAPH_1_1Subset__struct.html -------------------------------------------------------------------------------- /docs/html/dc/db9/classCXXGRAPH_1_1Graph__TS__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dc/db9/classCXXGRAPH_1_1Graph__TS__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/dc/db9/classCXXGRAPH_1_1Graph__TS__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | a457d441c5258eaf90f698767964e048 -------------------------------------------------------------------------------- /docs/html/dc/db9/classCXXGRAPH_1_1Graph__TS__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dc/db9/classCXXGRAPH_1_1Graph__TS__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/dc/dd5/structCXXGRAPH_1_1pair__hash-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dc/dd5/structCXXGRAPH_1_1pair__hash-members.html -------------------------------------------------------------------------------- /docs/html/dd/d43/classCXXGRAPH_1_1Weighted-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dd/d43/classCXXGRAPH_1_1Weighted-members.html -------------------------------------------------------------------------------- /docs/html/dd/d45/structCXXGRAPH_1_1csv__whitespace__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dd/d45/structCXXGRAPH_1_1csv__whitespace__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/dd/d45/structCXXGRAPH_1_1csv__whitespace__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | ba36480289ad03418b0e60aa7171fb8b -------------------------------------------------------------------------------- /docs/html/dd/d45/structCXXGRAPH_1_1csv__whitespace__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dd/d45/structCXXGRAPH_1_1csv__whitespace__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/dd/d4d/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dd/d4d/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/dd/d4d/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 9d354ba15ca1b0800c755b98392db790 -------------------------------------------------------------------------------- /docs/html/dd/d4d/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dd/d4d/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/dd/d68/classCXXGRAPH_1_1UndirectedWeightedEdge__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dd/d68/classCXXGRAPH_1_1UndirectedWeightedEdge__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/dd/d68/classCXXGRAPH_1_1UndirectedWeightedEdge__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 592c3a0f4df958b087b2d7b2bb52f913 -------------------------------------------------------------------------------- /docs/html/dd/d68/classCXXGRAPH_1_1UndirectedWeightedEdge__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dd/d68/classCXXGRAPH_1_1UndirectedWeightedEdge__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/dd/d69/classCXXGRAPH_1_1PARTITIONING_1_1HDRF-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dd/d69/classCXXGRAPH_1_1PARTITIONING_1_1HDRF-members.html -------------------------------------------------------------------------------- /docs/html/dd/d6c/structCXXGRAPH_1_1DijkstraResult__struct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dd/d6c/structCXXGRAPH_1_1DijkstraResult__struct.html -------------------------------------------------------------------------------- /docs/html/dd/dc1/structCXXGRAPH_1_1FWResult__struct-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dd/dc1/structCXXGRAPH_1_1FWResult__struct-members.html -------------------------------------------------------------------------------- /docs/html/dd/de6/classCXXGRAPH_1_1Partition__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dd/de6/classCXXGRAPH_1_1Partition__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/dd/de6/classCXXGRAPH_1_1Partition__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | ee898ffa73c3db022fc7557784261426 -------------------------------------------------------------------------------- /docs/html/dd/de6/classCXXGRAPH_1_1Partition__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dd/de6/classCXXGRAPH_1_1Partition__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/de/d1d/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/de/d1d/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord.html -------------------------------------------------------------------------------- /docs/html/de/d42/classCXXGRAPH_1_1PARTITIONING_1_1PartitionState-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/de/d42/classCXXGRAPH_1_1PARTITIONING_1_1PartitionState-members.html -------------------------------------------------------------------------------- /docs/html/de/d59/classCXXGRAPH_1_1PARTITIONING_1_1Partition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/de/d59/classCXXGRAPH_1_1PARTITIONING_1_1Partition.html -------------------------------------------------------------------------------- /docs/html/de/d6f/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/de/d6f/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState-members.html -------------------------------------------------------------------------------- /docs/html/de/d77/classCXXGRAPH_1_1Graph-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/de/d77/classCXXGRAPH_1_1Graph-members.html -------------------------------------------------------------------------------- /docs/html/de/d82/classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/de/d82/classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/de/d82/classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 56cade5886d9c31ea1ffaf6f01ac9e7f -------------------------------------------------------------------------------- /docs/html/de/d82/classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/de/d82/classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/de/d82/classCXXGRAPH_1_1Runnable-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/de/d82/classCXXGRAPH_1_1Runnable-members.html -------------------------------------------------------------------------------- /docs/html/de/d93/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/de/d93/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/de/d93/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | df177e03bb17e95d798ac79b4c93d980 -------------------------------------------------------------------------------- /docs/html/de/d93/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/de/d93/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/de/dac/Writer_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/de/dac/Writer_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/de/ddc/classCXXGRAPH_1_1PARTITIONING_1_1Record-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/de/ddc/classCXXGRAPH_1_1PARTITIONING_1_1Record-members.html -------------------------------------------------------------------------------- /docs/html/de/de1/CoordinatedPartitionState_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/de/de1/CoordinatedPartitionState_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/de/deb/classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/de/deb/classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy.html -------------------------------------------------------------------------------- /docs/html/de/df5/classCXXGRAPH_1_1DirectedEdge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/de/df5/classCXXGRAPH_1_1DirectedEdge.html -------------------------------------------------------------------------------- /docs/html/df/d03/Reader_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/df/d03/Reader_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/df/d27/classCXXGRAPH_1_1PARTITIONING_1_1HDRF__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/df/d27/classCXXGRAPH_1_1PARTITIONING_1_1HDRF__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/df/d27/classCXXGRAPH_1_1PARTITIONING_1_1HDRF__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | e35bcf69e519fb6fd4498b342cf41555 -------------------------------------------------------------------------------- /docs/html/df/d27/classCXXGRAPH_1_1PARTITIONING_1_1HDRF__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/df/d27/classCXXGRAPH_1_1PARTITIONING_1_1HDRF__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/df/d57/classCXXGRAPH_1_1Graph__TS__coll__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/df/d57/classCXXGRAPH_1_1Graph__TS__coll__graph.map -------------------------------------------------------------------------------- /docs/html/df/d57/classCXXGRAPH_1_1Graph__TS__coll__graph.md5: -------------------------------------------------------------------------------- 1 | a457d441c5258eaf90f698767964e048 -------------------------------------------------------------------------------- /docs/html/df/d57/classCXXGRAPH_1_1Graph__TS__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/df/d57/classCXXGRAPH_1_1Graph__TS__coll__graph.png -------------------------------------------------------------------------------- /docs/html/df/d6f/classCXXGRAPH_1_1PARTITIONING_1_1PartitionState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/df/d6f/classCXXGRAPH_1_1PARTITIONING_1_1PartitionState.html -------------------------------------------------------------------------------- /docs/html/df/d6f/structCXXGRAPH_1_1BellmanFordResult__struct-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/df/d6f/structCXXGRAPH_1_1BellmanFordResult__struct-members.html -------------------------------------------------------------------------------- /docs/html/df/d71/classCXXGRAPH_1_1UndirectedEdge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/df/d71/classCXXGRAPH_1_1UndirectedEdge.html -------------------------------------------------------------------------------- /docs/html/df/dd0/classCXXGRAPH_1_1Weighted__inherit__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/df/dd0/classCXXGRAPH_1_1Weighted__inherit__graph.map -------------------------------------------------------------------------------- /docs/html/df/dd0/classCXXGRAPH_1_1Weighted__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 33c4f726c6310047409d63a4ed33722e -------------------------------------------------------------------------------- /docs/html/df/dd0/classCXXGRAPH_1_1Weighted__inherit__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/df/dd0/classCXXGRAPH_1_1Weighted__inherit__graph.png -------------------------------------------------------------------------------- /docs/html/df/dd3/Weighted_8hpp_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/df/dd3/Weighted_8hpp_source.html -------------------------------------------------------------------------------- /docs/html/df/ddc/structCXXGRAPH_1_1csv__whitespace__coll__graph.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/df/ddc/structCXXGRAPH_1_1csv__whitespace__coll__graph.map -------------------------------------------------------------------------------- /docs/html/df/ddc/structCXXGRAPH_1_1csv__whitespace__coll__graph.md5: -------------------------------------------------------------------------------- 1 | ba36480289ad03418b0e60aa7171fb8b -------------------------------------------------------------------------------- /docs/html/df/ddc/structCXXGRAPH_1_1csv__whitespace__coll__graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/df/ddc/structCXXGRAPH_1_1csv__whitespace__coll__graph.png -------------------------------------------------------------------------------- /docs/html/df/df1/structCXXGRAPH_1_1PrimResult__struct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/df/df1/structCXXGRAPH_1_1PrimResult__struct.html -------------------------------------------------------------------------------- /docs/html/dir_5a1c299fe071d2684abbfdc4f5a71058.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dir_5a1c299fe071d2684abbfdc4f5a71058.html -------------------------------------------------------------------------------- /docs/html/dir_664b94fe24dd8b5b31bd73b721ea4656.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dir_664b94fe24dd8b5b31bd73b721ea4656.html -------------------------------------------------------------------------------- /docs/html/dir_701c8f06b1c05dfef7c59ec059aa05bd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dir_701c8f06b1c05dfef7c59ec059aa05bd.html -------------------------------------------------------------------------------- /docs/html/dir_b647303d7dac632cf2e2685370b563a8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dir_b647303d7dac632cf2e2685370b563a8.html -------------------------------------------------------------------------------- /docs/html/dir_c632fc99025ef8bfa3e097f773c00de6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dir_c632fc99025ef8bfa3e097f773c00de6.html -------------------------------------------------------------------------------- /docs/html/dir_d192150ed164ec0bf3db1023d7b06f0a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dir_d192150ed164ec0bf3db1023d7b06f0a.html -------------------------------------------------------------------------------- /docs/html/dir_d44c64559bbebec7f509842c48db8b23.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dir_d44c64559bbebec7f509842c48db8b23.html -------------------------------------------------------------------------------- /docs/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/doc.png -------------------------------------------------------------------------------- /docs/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/doxygen.css -------------------------------------------------------------------------------- /docs/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/doxygen.png -------------------------------------------------------------------------------- /docs/html/doxygen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/doxygen.svg -------------------------------------------------------------------------------- /docs/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/dynsections.js -------------------------------------------------------------------------------- /docs/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/files.html -------------------------------------------------------------------------------- /docs/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/folderclosed.png -------------------------------------------------------------------------------- /docs/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/folderopen.png -------------------------------------------------------------------------------- /docs/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/functions.html -------------------------------------------------------------------------------- /docs/html/functions_enum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/functions_enum.html -------------------------------------------------------------------------------- /docs/html/functions_eval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/functions_eval.html -------------------------------------------------------------------------------- /docs/html/functions_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/functions_func.html -------------------------------------------------------------------------------- /docs/html/functions_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/functions_type.html -------------------------------------------------------------------------------- /docs/html/graph_legend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/graph_legend.html -------------------------------------------------------------------------------- /docs/html/graph_legend.md5: -------------------------------------------------------------------------------- 1 | f51bf6e9a10430aafef59831b08dcbfe -------------------------------------------------------------------------------- /docs/html/graph_legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/graph_legend.png -------------------------------------------------------------------------------- /docs/html/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/hierarchy.html -------------------------------------------------------------------------------- /docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/index.html -------------------------------------------------------------------------------- /docs/html/inherit_graph_0.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_0.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_0.md5: -------------------------------------------------------------------------------- 1 | aa86dd841c8cdc642e770c6d21f37a6c -------------------------------------------------------------------------------- /docs/html/inherit_graph_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_0.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_1.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_1.md5: -------------------------------------------------------------------------------- 1 | 66f2ab652358b06052aa2f7775c85f3d -------------------------------------------------------------------------------- /docs/html/inherit_graph_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_1.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_10.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_10.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_10.md5: -------------------------------------------------------------------------------- 1 | 1dc07f71182277ba942b7a43f12ccbd8 -------------------------------------------------------------------------------- /docs/html/inherit_graph_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_10.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_11.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_11.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_11.md5: -------------------------------------------------------------------------------- 1 | a7707b122cb85408135e208b4a8abdaa -------------------------------------------------------------------------------- /docs/html/inherit_graph_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_11.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_12.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_12.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_12.md5: -------------------------------------------------------------------------------- 1 | 204bf6c7cd30308d5696f38729b00fce -------------------------------------------------------------------------------- /docs/html/inherit_graph_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_12.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_13.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_13.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_13.md5: -------------------------------------------------------------------------------- 1 | f90083fb5408e9eda3a86fbf51f5f610 -------------------------------------------------------------------------------- /docs/html/inherit_graph_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_13.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_14.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_14.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_14.md5: -------------------------------------------------------------------------------- 1 | 398915e609b7e8f6ad4ae593923c479a -------------------------------------------------------------------------------- /docs/html/inherit_graph_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_14.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_15.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_15.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_15.md5: -------------------------------------------------------------------------------- 1 | 49ba6246ba08835973fade9eca668142 -------------------------------------------------------------------------------- /docs/html/inherit_graph_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_15.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_16.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_16.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_16.md5: -------------------------------------------------------------------------------- 1 | 82c18d7617fece5247869f80e16331ce -------------------------------------------------------------------------------- /docs/html/inherit_graph_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_16.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_17.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_17.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_17.md5: -------------------------------------------------------------------------------- 1 | 429227e8116c97320c07eb00558352bb -------------------------------------------------------------------------------- /docs/html/inherit_graph_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_17.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_18.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_18.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_18.md5: -------------------------------------------------------------------------------- 1 | 2d14291715e73a3e248555e4634bd1a7 -------------------------------------------------------------------------------- /docs/html/inherit_graph_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_18.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_19.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_19.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_19.md5: -------------------------------------------------------------------------------- 1 | 5f41132ee33d27a5edb66a6bf48b0c55 -------------------------------------------------------------------------------- /docs/html/inherit_graph_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_19.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_2.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_2.md5: -------------------------------------------------------------------------------- 1 | a51312f1e1e4bdfa46d94dc6e4fc6041 -------------------------------------------------------------------------------- /docs/html/inherit_graph_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_2.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_20.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_20.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_20.md5: -------------------------------------------------------------------------------- 1 | 75ecd533570ca0484334a19b107cb4ec -------------------------------------------------------------------------------- /docs/html/inherit_graph_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_20.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_21.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_21.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_21.md5: -------------------------------------------------------------------------------- 1 | 2d14291715e73a3e248555e4634bd1a7 -------------------------------------------------------------------------------- /docs/html/inherit_graph_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_21.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_22.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_22.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_22.md5: -------------------------------------------------------------------------------- 1 | 5f41132ee33d27a5edb66a6bf48b0c55 -------------------------------------------------------------------------------- /docs/html/inherit_graph_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_22.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_23.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_23.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_23.md5: -------------------------------------------------------------------------------- 1 | 7764f33fe819cc84e05af7745e67f43c -------------------------------------------------------------------------------- /docs/html/inherit_graph_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_23.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_24.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_24.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_24.md5: -------------------------------------------------------------------------------- 1 | cbc428287dfe679d8d92ba909115631f -------------------------------------------------------------------------------- /docs/html/inherit_graph_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_24.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_25.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_25.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_25.md5: -------------------------------------------------------------------------------- 1 | 88997b6be683c0f5bc150cf463ccde12 -------------------------------------------------------------------------------- /docs/html/inherit_graph_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_25.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_26.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_26.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_26.md5: -------------------------------------------------------------------------------- 1 | 75ecd533570ca0484334a19b107cb4ec -------------------------------------------------------------------------------- /docs/html/inherit_graph_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_26.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_3.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_3.md5: -------------------------------------------------------------------------------- 1 | 8a6d7c52768857f3e2aeb78292b99453 -------------------------------------------------------------------------------- /docs/html/inherit_graph_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_3.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_4.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_4.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_4.md5: -------------------------------------------------------------------------------- 1 | 45c1322645da3c0ec43089f3f95aaa9e -------------------------------------------------------------------------------- /docs/html/inherit_graph_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_4.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_5.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_5.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_5.md5: -------------------------------------------------------------------------------- 1 | ddd9b6a5b06b0c2903e2dea9c5bf3030 -------------------------------------------------------------------------------- /docs/html/inherit_graph_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_5.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_6.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_6.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_6.md5: -------------------------------------------------------------------------------- 1 | 495db6d4f41484f275e54059441b80b1 -------------------------------------------------------------------------------- /docs/html/inherit_graph_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_6.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_7.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_7.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_7.md5: -------------------------------------------------------------------------------- 1 | e6bbd127164b4f341e6925a628fb2433 -------------------------------------------------------------------------------- /docs/html/inherit_graph_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_7.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_8.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_8.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_8.md5: -------------------------------------------------------------------------------- 1 | 51881acb8c9fbf77be4afe61e8a80cb7 -------------------------------------------------------------------------------- /docs/html/inherit_graph_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_8.png -------------------------------------------------------------------------------- /docs/html/inherit_graph_9.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_9.map -------------------------------------------------------------------------------- /docs/html/inherit_graph_9.md5: -------------------------------------------------------------------------------- 1 | d247b78c37a445288375e315a79edf4a -------------------------------------------------------------------------------- /docs/html/inherit_graph_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherit_graph_9.png -------------------------------------------------------------------------------- /docs/html/inherits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/inherits.html -------------------------------------------------------------------------------- /docs/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/jquery.js -------------------------------------------------------------------------------- /docs/html/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/logo.png -------------------------------------------------------------------------------- /docs/html/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/menu.js -------------------------------------------------------------------------------- /docs/html/menudata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/menudata.js -------------------------------------------------------------------------------- /docs/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/nav_f.png -------------------------------------------------------------------------------- /docs/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/nav_g.png -------------------------------------------------------------------------------- /docs/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/nav_h.png -------------------------------------------------------------------------------- /docs/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/open.png -------------------------------------------------------------------------------- /docs/html/search/all_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_0.html -------------------------------------------------------------------------------- /docs/html/search/all_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_0.js -------------------------------------------------------------------------------- /docs/html/search/all_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_1.html -------------------------------------------------------------------------------- /docs/html/search/all_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_1.js -------------------------------------------------------------------------------- /docs/html/search/all_10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_10.html -------------------------------------------------------------------------------- /docs/html/search/all_10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_10.js -------------------------------------------------------------------------------- /docs/html/search/all_11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_11.html -------------------------------------------------------------------------------- /docs/html/search/all_11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_11.js -------------------------------------------------------------------------------- /docs/html/search/all_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_2.html -------------------------------------------------------------------------------- /docs/html/search/all_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_2.js -------------------------------------------------------------------------------- /docs/html/search/all_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_3.html -------------------------------------------------------------------------------- /docs/html/search/all_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_3.js -------------------------------------------------------------------------------- /docs/html/search/all_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_4.html -------------------------------------------------------------------------------- /docs/html/search/all_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_4.js -------------------------------------------------------------------------------- /docs/html/search/all_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_5.html -------------------------------------------------------------------------------- /docs/html/search/all_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_5.js -------------------------------------------------------------------------------- /docs/html/search/all_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_6.html -------------------------------------------------------------------------------- /docs/html/search/all_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_6.js -------------------------------------------------------------------------------- /docs/html/search/all_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_7.html -------------------------------------------------------------------------------- /docs/html/search/all_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_7.js -------------------------------------------------------------------------------- /docs/html/search/all_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_8.html -------------------------------------------------------------------------------- /docs/html/search/all_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_8.js -------------------------------------------------------------------------------- /docs/html/search/all_9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_9.html -------------------------------------------------------------------------------- /docs/html/search/all_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_9.js -------------------------------------------------------------------------------- /docs/html/search/all_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_a.html -------------------------------------------------------------------------------- /docs/html/search/all_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_a.js -------------------------------------------------------------------------------- /docs/html/search/all_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_b.html -------------------------------------------------------------------------------- /docs/html/search/all_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_b.js -------------------------------------------------------------------------------- /docs/html/search/all_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_c.html -------------------------------------------------------------------------------- /docs/html/search/all_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_c.js -------------------------------------------------------------------------------- /docs/html/search/all_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_d.html -------------------------------------------------------------------------------- /docs/html/search/all_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_d.js -------------------------------------------------------------------------------- /docs/html/search/all_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_e.html -------------------------------------------------------------------------------- /docs/html/search/all_e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_e.js -------------------------------------------------------------------------------- /docs/html/search/all_f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_f.html -------------------------------------------------------------------------------- /docs/html/search/all_f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/all_f.js -------------------------------------------------------------------------------- /docs/html/search/classes_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_0.html -------------------------------------------------------------------------------- /docs/html/search/classes_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_0.js -------------------------------------------------------------------------------- /docs/html/search/classes_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_1.html -------------------------------------------------------------------------------- /docs/html/search/classes_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_1.js -------------------------------------------------------------------------------- /docs/html/search/classes_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_2.html -------------------------------------------------------------------------------- /docs/html/search/classes_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_2.js -------------------------------------------------------------------------------- /docs/html/search/classes_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_3.html -------------------------------------------------------------------------------- /docs/html/search/classes_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_3.js -------------------------------------------------------------------------------- /docs/html/search/classes_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_4.html -------------------------------------------------------------------------------- /docs/html/search/classes_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_4.js -------------------------------------------------------------------------------- /docs/html/search/classes_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_5.html -------------------------------------------------------------------------------- /docs/html/search/classes_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_5.js -------------------------------------------------------------------------------- /docs/html/search/classes_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_6.html -------------------------------------------------------------------------------- /docs/html/search/classes_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_6.js -------------------------------------------------------------------------------- /docs/html/search/classes_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_7.html -------------------------------------------------------------------------------- /docs/html/search/classes_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_7.js -------------------------------------------------------------------------------- /docs/html/search/classes_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_8.html -------------------------------------------------------------------------------- /docs/html/search/classes_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_8.js -------------------------------------------------------------------------------- /docs/html/search/classes_9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_9.html -------------------------------------------------------------------------------- /docs/html/search/classes_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_9.js -------------------------------------------------------------------------------- /docs/html/search/classes_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_a.html -------------------------------------------------------------------------------- /docs/html/search/classes_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_a.js -------------------------------------------------------------------------------- /docs/html/search/classes_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_b.html -------------------------------------------------------------------------------- /docs/html/search/classes_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_b.js -------------------------------------------------------------------------------- /docs/html/search/classes_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_c.html -------------------------------------------------------------------------------- /docs/html/search/classes_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_c.js -------------------------------------------------------------------------------- /docs/html/search/classes_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_d.html -------------------------------------------------------------------------------- /docs/html/search/classes_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_d.js -------------------------------------------------------------------------------- /docs/html/search/classes_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_e.html -------------------------------------------------------------------------------- /docs/html/search/classes_e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/classes_e.js -------------------------------------------------------------------------------- /docs/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/close.png -------------------------------------------------------------------------------- /docs/html/search/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/close.svg -------------------------------------------------------------------------------- /docs/html/search/enums_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/enums_0.html -------------------------------------------------------------------------------- /docs/html/search/enums_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/enums_0.js -------------------------------------------------------------------------------- /docs/html/search/enumvalues_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/enumvalues_0.html -------------------------------------------------------------------------------- /docs/html/search/enumvalues_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/enumvalues_0.js -------------------------------------------------------------------------------- /docs/html/search/enumvalues_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/enumvalues_1.html -------------------------------------------------------------------------------- /docs/html/search/enumvalues_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/enumvalues_1.js -------------------------------------------------------------------------------- /docs/html/search/functions_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_0.html -------------------------------------------------------------------------------- /docs/html/search/functions_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_0.js -------------------------------------------------------------------------------- /docs/html/search/functions_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_1.html -------------------------------------------------------------------------------- /docs/html/search/functions_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_1.js -------------------------------------------------------------------------------- /docs/html/search/functions_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_2.html -------------------------------------------------------------------------------- /docs/html/search/functions_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_2.js -------------------------------------------------------------------------------- /docs/html/search/functions_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_3.html -------------------------------------------------------------------------------- /docs/html/search/functions_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_3.js -------------------------------------------------------------------------------- /docs/html/search/functions_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_4.html -------------------------------------------------------------------------------- /docs/html/search/functions_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_4.js -------------------------------------------------------------------------------- /docs/html/search/functions_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_5.html -------------------------------------------------------------------------------- /docs/html/search/functions_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_5.js -------------------------------------------------------------------------------- /docs/html/search/functions_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_6.html -------------------------------------------------------------------------------- /docs/html/search/functions_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_6.js -------------------------------------------------------------------------------- /docs/html/search/functions_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_7.html -------------------------------------------------------------------------------- /docs/html/search/functions_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_7.js -------------------------------------------------------------------------------- /docs/html/search/functions_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_8.html -------------------------------------------------------------------------------- /docs/html/search/functions_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_8.js -------------------------------------------------------------------------------- /docs/html/search/functions_9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_9.html -------------------------------------------------------------------------------- /docs/html/search/functions_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_9.js -------------------------------------------------------------------------------- /docs/html/search/functions_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_a.html -------------------------------------------------------------------------------- /docs/html/search/functions_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_a.js -------------------------------------------------------------------------------- /docs/html/search/functions_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_b.html -------------------------------------------------------------------------------- /docs/html/search/functions_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_b.js -------------------------------------------------------------------------------- /docs/html/search/functions_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_c.html -------------------------------------------------------------------------------- /docs/html/search/functions_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/functions_c.js -------------------------------------------------------------------------------- /docs/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/mag_sel.png -------------------------------------------------------------------------------- /docs/html/search/mag_sel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/mag_sel.svg -------------------------------------------------------------------------------- /docs/html/search/nomatches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/nomatches.html -------------------------------------------------------------------------------- /docs/html/search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/search.css -------------------------------------------------------------------------------- /docs/html/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/search.js -------------------------------------------------------------------------------- /docs/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/search_l.png -------------------------------------------------------------------------------- /docs/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/search_m.png -------------------------------------------------------------------------------- /docs/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/search_r.png -------------------------------------------------------------------------------- /docs/html/search/searchdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/searchdata.js -------------------------------------------------------------------------------- /docs/html/search/typedefs_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/typedefs_0.html -------------------------------------------------------------------------------- /docs/html/search/typedefs_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/typedefs_0.js -------------------------------------------------------------------------------- /docs/html/search/typedefs_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/typedefs_1.html -------------------------------------------------------------------------------- /docs/html/search/typedefs_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/search/typedefs_1.js -------------------------------------------------------------------------------- /docs/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/splitbar.png -------------------------------------------------------------------------------- /docs/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/sync_off.png -------------------------------------------------------------------------------- /docs/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/sync_on.png -------------------------------------------------------------------------------- /docs/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/tab_a.png -------------------------------------------------------------------------------- /docs/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/tab_b.png -------------------------------------------------------------------------------- /docs/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/tab_h.png -------------------------------------------------------------------------------- /docs/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/tab_s.png -------------------------------------------------------------------------------- /docs/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/html/tabs.css -------------------------------------------------------------------------------- /docs/latex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/Makefile -------------------------------------------------------------------------------- /docs/latex/annotated.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/annotated.tex -------------------------------------------------------------------------------- /docs/latex/d0/d69/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 7d881bcf4766ca8ba39bab3bedd12ade -------------------------------------------------------------------------------- /docs/latex/d0/d69/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d0/d69/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/d0/d70/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d0/d70/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState.tex -------------------------------------------------------------------------------- /docs/latex/d0/d7c/classCXXGRAPH_1_1UndirectedWeightedEdge__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 44e4c50cdb8cef3ce354236aa5dafba6 -------------------------------------------------------------------------------- /docs/latex/d0/d7c/classCXXGRAPH_1_1UndirectedWeightedEdge__coll__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d0/d7c/classCXXGRAPH_1_1UndirectedWeightedEdge__coll__graph.pdf -------------------------------------------------------------------------------- /docs/latex/d0/df2/classCXXGRAPH_1_1Graph.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d0/df2/classCXXGRAPH_1_1Graph.tex -------------------------------------------------------------------------------- /docs/latex/d1/d63/classCXXGRAPH_1_1PARTITIONING_1_1HDRF.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d1/d63/classCXXGRAPH_1_1PARTITIONING_1_1HDRF.tex -------------------------------------------------------------------------------- /docs/latex/d1/d89/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d1/d89/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut.tex -------------------------------------------------------------------------------- /docs/latex/d2/d00/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d2/d00/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut.tex -------------------------------------------------------------------------------- /docs/latex/d2/d3f/classCXXGRAPH_1_1Reader.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d2/d3f/classCXXGRAPH_1_1Reader.tex -------------------------------------------------------------------------------- /docs/latex/d2/d6d/classCXXGRAPH_1_1PARTITIONING_1_1EBV.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d2/d6d/classCXXGRAPH_1_1PARTITIONING_1_1EBV.tex -------------------------------------------------------------------------------- /docs/latex/d2/def/structCXXGRAPH_1_1PartitioningStats__struct.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d2/def/structCXXGRAPH_1_1PartitioningStats__struct.tex -------------------------------------------------------------------------------- /docs/latex/d3/dd2/classCXXGRAPH_1_1Node.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d3/dd2/classCXXGRAPH_1_1Node.tex -------------------------------------------------------------------------------- /docs/latex/d3/de1/classCXXGRAPH_1_1PARTITIONING_1_1Record.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d3/de1/classCXXGRAPH_1_1PARTITIONING_1_1Record.tex -------------------------------------------------------------------------------- /docs/latex/d4/d32/classCXXGRAPH_1_1Partition.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d4/d32/classCXXGRAPH_1_1Partition.tex -------------------------------------------------------------------------------- /docs/latex/d4/d63/structCXXGRAPH_1_1MstResult__struct.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d4/d63/structCXXGRAPH_1_1MstResult__struct.tex -------------------------------------------------------------------------------- /docs/latex/d4/df1/structCXXGRAPH_1_1BellmanFordResult__struct.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d4/df1/structCXXGRAPH_1_1BellmanFordResult__struct.tex -------------------------------------------------------------------------------- /docs/latex/d5/d0f/classCXXGRAPH_1_1DirectedEdge__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | ee4ecb0f71d3f0f87b0e5f0a86660a23 -------------------------------------------------------------------------------- /docs/latex/d5/d0f/classCXXGRAPH_1_1DirectedEdge__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d5/d0f/classCXXGRAPH_1_1DirectedEdge__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/d5/d2e/classCXXGRAPH_1_1Runnable.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d5/d2e/classCXXGRAPH_1_1Runnable.tex -------------------------------------------------------------------------------- /docs/latex/d5/d34/classCXXGRAPH_1_1DirectedWeightedEdge__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | c239c012fd6f8502f12c885180edef2d -------------------------------------------------------------------------------- /docs/latex/d5/d34/classCXXGRAPH_1_1DirectedWeightedEdge__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d5/d34/classCXXGRAPH_1_1DirectedWeightedEdge__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/d5/d57/classCXXGRAPH_1_1DirectedEdge__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 71b8435d8339b46a683f7b2ab3c45f3e -------------------------------------------------------------------------------- /docs/latex/d5/d57/classCXXGRAPH_1_1DirectedEdge__coll__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d5/d57/classCXXGRAPH_1_1DirectedEdge__coll__graph.pdf -------------------------------------------------------------------------------- /docs/latex/d5/d93/structCXXGRAPH_1_1DialResult__struct.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d5/d93/structCXXGRAPH_1_1DialResult__struct.tex -------------------------------------------------------------------------------- /docs/latex/d6/d29/classCXXGRAPH_1_1Edge__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | be469d8ffe05da50098b47da25d89f84 -------------------------------------------------------------------------------- /docs/latex/d6/d29/classCXXGRAPH_1_1Edge__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d6/d29/classCXXGRAPH_1_1Edge__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/d6/d2c/classCXXGRAPH_1_1PARTITIONING_1_1Partition__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 4df90093b9618c240fa194387afa92a8 -------------------------------------------------------------------------------- /docs/latex/d6/d2c/classCXXGRAPH_1_1PARTITIONING_1_1Partition__coll__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d6/d2c/classCXXGRAPH_1_1PARTITIONING_1_1Partition__coll__graph.pdf -------------------------------------------------------------------------------- /docs/latex/d6/daa/classCXXGRAPH_1_1ThreadSafe__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 57727133768a9850e9cbd3be1d05b041 -------------------------------------------------------------------------------- /docs/latex/d6/daa/classCXXGRAPH_1_1ThreadSafe__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d6/daa/classCXXGRAPH_1_1ThreadSafe__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/d7/d1b/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d7/d1b/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread.tex -------------------------------------------------------------------------------- /docs/latex/d7/d24/classCXXGRAPH_1_1UndirectedWeightedEdge.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d7/d24/classCXXGRAPH_1_1UndirectedWeightedEdge.tex -------------------------------------------------------------------------------- /docs/latex/d7/d2a/classCXXGRAPH_1_1Edge.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d7/d2a/classCXXGRAPH_1_1Edge.tex -------------------------------------------------------------------------------- /docs/latex/d7/d53/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__coll__graph.md5: -------------------------------------------------------------------------------- 1 | c2fabd804525b2d7b65089ec1195d4e1 -------------------------------------------------------------------------------- /docs/latex/d7/d53/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__coll__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d7/d53/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__coll__graph.pdf -------------------------------------------------------------------------------- /docs/latex/d7/d5a/classCXXGRAPH_1_1DirectedWeightedEdge__coll__graph.md5: -------------------------------------------------------------------------------- 1 | c239c012fd6f8502f12c885180edef2d -------------------------------------------------------------------------------- /docs/latex/d7/d5a/classCXXGRAPH_1_1DirectedWeightedEdge__coll__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d7/d5a/classCXXGRAPH_1_1DirectedWeightedEdge__coll__graph.pdf -------------------------------------------------------------------------------- /docs/latex/d7/d9c/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 87dc944734159b22a8f134f0bb9c8ae2 -------------------------------------------------------------------------------- /docs/latex/d7/d9c/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__coll__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d7/d9c/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__coll__graph.pdf -------------------------------------------------------------------------------- /docs/latex/d7/dd2/classCXXGRAPH_1_1UndirectedEdge__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 2acfc542cee36a8d2511023b39aa566c -------------------------------------------------------------------------------- /docs/latex/d7/dd2/classCXXGRAPH_1_1UndirectedEdge__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d7/dd2/classCXXGRAPH_1_1UndirectedEdge__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/d7/dde/classCXXGRAPH_1_1Writer.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d7/dde/classCXXGRAPH_1_1Writer.tex -------------------------------------------------------------------------------- /docs/latex/d8/d63/classCXXGRAPH_1_1PARTITIONING_1_1Partition__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 4df90093b9618c240fa194387afa92a8 -------------------------------------------------------------------------------- /docs/latex/d8/d63/classCXXGRAPH_1_1PARTITIONING_1_1Partition__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d8/d63/classCXXGRAPH_1_1PARTITIONING_1_1Partition__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/d8/d6d/classCXXGRAPH_1_1PARTITIONING_1_1Partitioner.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d8/d6d/classCXXGRAPH_1_1PARTITIONING_1_1Partitioner.tex -------------------------------------------------------------------------------- /docs/latex/d8/d6d/classCXXGRAPH_1_1UndirectedEdge__coll__graph.md5: -------------------------------------------------------------------------------- 1 | c50453efe6a6b008d6520a366fdf33d2 -------------------------------------------------------------------------------- /docs/latex/d8/d6d/classCXXGRAPH_1_1UndirectedEdge__coll__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d8/d6d/classCXXGRAPH_1_1UndirectedEdge__coll__graph.pdf -------------------------------------------------------------------------------- /docs/latex/d8/dad/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 3aba258b85533fb2908c4fa99a1ba295 -------------------------------------------------------------------------------- /docs/latex/d8/dad/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__coll__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d8/dad/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__coll__graph.pdf -------------------------------------------------------------------------------- /docs/latex/d8/de8/classCXXGRAPH_1_1PARTITIONING_1_1EBV__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 5e37a22fc64af01648086e48ed217b92 -------------------------------------------------------------------------------- /docs/latex/d8/de8/classCXXGRAPH_1_1PARTITIONING_1_1EBV__coll__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d8/de8/classCXXGRAPH_1_1PARTITIONING_1_1EBV__coll__graph.pdf -------------------------------------------------------------------------------- /docs/latex/d9/d11/classCXXGRAPH_1_1PARTITIONING_1_1HDRF__coll__graph.md5: -------------------------------------------------------------------------------- 1 | dad33e54a6f1fe21a71cfa445de3b08f -------------------------------------------------------------------------------- /docs/latex/d9/d11/classCXXGRAPH_1_1PARTITIONING_1_1HDRF__coll__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d9/d11/classCXXGRAPH_1_1PARTITIONING_1_1HDRF__coll__graph.pdf -------------------------------------------------------------------------------- /docs/latex/d9/d2f/classCXXGRAPH_1_1ThreadSafe.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d9/d2f/classCXXGRAPH_1_1ThreadSafe.tex -------------------------------------------------------------------------------- /docs/latex/d9/d85/classCXXGRAPH_1_1Runnable__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 57ab58faee5c810f0684de8de07feb2d -------------------------------------------------------------------------------- /docs/latex/d9/d85/classCXXGRAPH_1_1Runnable__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/d9/d85/classCXXGRAPH_1_1Runnable__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/da/d21/classCXXGRAPH_1_1PARTITIONING_1_1PartitionState__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 839e19a78ef7c4da2a8bd4e013c2b452 -------------------------------------------------------------------------------- /docs/latex/da/d21/classCXXGRAPH_1_1PARTITIONING_1_1PartitionState__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/da/d21/classCXXGRAPH_1_1PARTITIONING_1_1PartitionState__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/da/d55/classCXXGRAPH_1_1DirectedWeightedEdge.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/da/d55/classCXXGRAPH_1_1DirectedWeightedEdge.tex -------------------------------------------------------------------------------- /docs/latex/da/d71/classCXXGRAPH_1_1PARTITIONING_1_1PartitioningStats.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/da/d71/classCXXGRAPH_1_1PARTITIONING_1_1PartitioningStats.tex -------------------------------------------------------------------------------- /docs/latex/da/d9e/structCXXGRAPH_1_1csv__whitespace.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/da/d9e/structCXXGRAPH_1_1csv__whitespace.tex -------------------------------------------------------------------------------- /docs/latex/da/da5/classCXXGRAPH_1_1Graph__TS.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/da/da5/classCXXGRAPH_1_1Graph__TS.tex -------------------------------------------------------------------------------- /docs/latex/da/de0/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 7d881bcf4766ca8ba39bab3bedd12ade -------------------------------------------------------------------------------- /docs/latex/da/de0/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__coll__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/da/de0/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedPartitionState__coll__graph.pdf -------------------------------------------------------------------------------- /docs/latex/db/d31/structCXXGRAPH_1_1pair__hash.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/db/d31/structCXXGRAPH_1_1pair__hash.tex -------------------------------------------------------------------------------- /docs/latex/db/d3e/classCXXGRAPH_1_1PARTITIONING_1_1Record__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 72ef4973881afcfe47aaa12b2646e5aa -------------------------------------------------------------------------------- /docs/latex/db/d3e/classCXXGRAPH_1_1PARTITIONING_1_1Record__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/db/d3e/classCXXGRAPH_1_1PARTITIONING_1_1Record__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/db/d54/classCXXGRAPH_1_1Weighted.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/db/d54/classCXXGRAPH_1_1Weighted.tex -------------------------------------------------------------------------------- /docs/latex/db/d5b/classCXXGRAPH_1_1PARTITIONING_1_1Globals.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/db/d5b/classCXXGRAPH_1_1PARTITIONING_1_1Globals.tex -------------------------------------------------------------------------------- /docs/latex/db/d73/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 10b85100da7eb2cb43810ad85696d4f1 -------------------------------------------------------------------------------- /docs/latex/db/d73/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/db/d73/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/db/dfe/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 10b85100da7eb2cb43810ad85696d4f1 -------------------------------------------------------------------------------- /docs/latex/db/dfe/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__coll__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/db/dfe/classCXXGRAPH_1_1PARTITIONING_1_1EdgeBalancedVertexCut__coll__graph.pdf -------------------------------------------------------------------------------- /docs/latex/dc/d04/classCXXGRAPH_1_1PARTITIONING_1_1EBV__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 5e37a22fc64af01648086e48ed217b92 -------------------------------------------------------------------------------- /docs/latex/dc/d04/classCXXGRAPH_1_1PARTITIONING_1_1EBV__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/dc/d04/classCXXGRAPH_1_1PARTITIONING_1_1EBV__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/dc/d51/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 87dc944734159b22a8f134f0bb9c8ae2 -------------------------------------------------------------------------------- /docs/latex/dc/d51/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/dc/d51/classCXXGRAPH_1_1PARTITIONING_1_1PartitionerThread__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/dc/d73/classCXXGRAPH_1_1Partition__coll__graph.md5: -------------------------------------------------------------------------------- 1 | b65d7b213aaebe493a7600293b388ab1 -------------------------------------------------------------------------------- /docs/latex/dc/d73/classCXXGRAPH_1_1Partition__coll__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/dc/d73/classCXXGRAPH_1_1Partition__coll__graph.pdf -------------------------------------------------------------------------------- /docs/latex/dc/d80/classCXXGRAPH_1_1Graph__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 9e7a0a30365fc60b03dc05161315bf68 -------------------------------------------------------------------------------- /docs/latex/dc/d80/classCXXGRAPH_1_1Graph__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/dc/d80/classCXXGRAPH_1_1Graph__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/dc/da9/structCXXGRAPH_1_1FWResult__struct.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/dc/da9/structCXXGRAPH_1_1FWResult__struct.tex -------------------------------------------------------------------------------- /docs/latex/dc/daa/structCXXGRAPH_1_1Subset__struct.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/dc/daa/structCXXGRAPH_1_1Subset__struct.tex -------------------------------------------------------------------------------- /docs/latex/dc/db9/classCXXGRAPH_1_1Graph__TS__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 30a484a514c9fb222878c4301ca757f9 -------------------------------------------------------------------------------- /docs/latex/dc/db9/classCXXGRAPH_1_1Graph__TS__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/dc/db9/classCXXGRAPH_1_1Graph__TS__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/dd/d45/structCXXGRAPH_1_1csv__whitespace__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | c7a09af9a8983bd66733b95ab108d91f -------------------------------------------------------------------------------- /docs/latex/dd/d45/structCXXGRAPH_1_1csv__whitespace__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/dd/d45/structCXXGRAPH_1_1csv__whitespace__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/dd/d4d/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | c2fabd804525b2d7b65089ec1195d4e1 -------------------------------------------------------------------------------- /docs/latex/dd/d4d/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/dd/d4d/classCXXGRAPH_1_1PARTITIONING_1_1GreedyVertexCut__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/dd/d68/classCXXGRAPH_1_1UndirectedWeightedEdge__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 44e4c50cdb8cef3ce354236aa5dafba6 -------------------------------------------------------------------------------- /docs/latex/dd/d68/classCXXGRAPH_1_1UndirectedWeightedEdge__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/dd/d68/classCXXGRAPH_1_1UndirectedWeightedEdge__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/dd/d6c/structCXXGRAPH_1_1DijkstraResult__struct.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/dd/d6c/structCXXGRAPH_1_1DijkstraResult__struct.tex -------------------------------------------------------------------------------- /docs/latex/dd/de6/classCXXGRAPH_1_1Partition__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | b65d7b213aaebe493a7600293b388ab1 -------------------------------------------------------------------------------- /docs/latex/dd/de6/classCXXGRAPH_1_1Partition__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/dd/de6/classCXXGRAPH_1_1Partition__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/de/d1d/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/de/d1d/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord.tex -------------------------------------------------------------------------------- /docs/latex/de/d59/classCXXGRAPH_1_1PARTITIONING_1_1Partition.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/de/d59/classCXXGRAPH_1_1PARTITIONING_1_1Partition.tex -------------------------------------------------------------------------------- /docs/latex/de/d82/classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | dacd4b12ac8567636df6f349141ae5fc -------------------------------------------------------------------------------- /docs/latex/de/d82/classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/de/d82/classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/de/d93/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 3aba258b85533fb2908c4fa99a1ba295 -------------------------------------------------------------------------------- /docs/latex/de/d93/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/de/d93/classCXXGRAPH_1_1PARTITIONING_1_1CoordinatedRecord__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/de/deb/classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/de/deb/classCXXGRAPH_1_1PARTITIONING_1_1PartitionStrategy.tex -------------------------------------------------------------------------------- /docs/latex/de/df5/classCXXGRAPH_1_1DirectedEdge.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/de/df5/classCXXGRAPH_1_1DirectedEdge.tex -------------------------------------------------------------------------------- /docs/latex/df/d27/classCXXGRAPH_1_1PARTITIONING_1_1HDRF__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | dad33e54a6f1fe21a71cfa445de3b08f -------------------------------------------------------------------------------- /docs/latex/df/d27/classCXXGRAPH_1_1PARTITIONING_1_1HDRF__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/df/d27/classCXXGRAPH_1_1PARTITIONING_1_1HDRF__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/df/d57/classCXXGRAPH_1_1Graph__TS__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 30a484a514c9fb222878c4301ca757f9 -------------------------------------------------------------------------------- /docs/latex/df/d57/classCXXGRAPH_1_1Graph__TS__coll__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/df/d57/classCXXGRAPH_1_1Graph__TS__coll__graph.pdf -------------------------------------------------------------------------------- /docs/latex/df/d6f/classCXXGRAPH_1_1PARTITIONING_1_1PartitionState.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/df/d6f/classCXXGRAPH_1_1PARTITIONING_1_1PartitionState.tex -------------------------------------------------------------------------------- /docs/latex/df/d71/classCXXGRAPH_1_1UndirectedEdge.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/df/d71/classCXXGRAPH_1_1UndirectedEdge.tex -------------------------------------------------------------------------------- /docs/latex/df/dd0/classCXXGRAPH_1_1Weighted__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | a6d191216e1d42b48988affd0d5dd97e -------------------------------------------------------------------------------- /docs/latex/df/dd0/classCXXGRAPH_1_1Weighted__inherit__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/df/dd0/classCXXGRAPH_1_1Weighted__inherit__graph.pdf -------------------------------------------------------------------------------- /docs/latex/df/ddc/structCXXGRAPH_1_1csv__whitespace__coll__graph.md5: -------------------------------------------------------------------------------- 1 | c7a09af9a8983bd66733b95ab108d91f -------------------------------------------------------------------------------- /docs/latex/df/ddc/structCXXGRAPH_1_1csv__whitespace__coll__graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/df/ddc/structCXXGRAPH_1_1csv__whitespace__coll__graph.pdf -------------------------------------------------------------------------------- /docs/latex/df/df1/structCXXGRAPH_1_1PrimResult__struct.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/df/df1/structCXXGRAPH_1_1PrimResult__struct.tex -------------------------------------------------------------------------------- /docs/latex/doxygen.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/doxygen.sty -------------------------------------------------------------------------------- /docs/latex/hierarchy.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/hierarchy.tex -------------------------------------------------------------------------------- /docs/latex/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/logo.png -------------------------------------------------------------------------------- /docs/latex/longtable_doxygen.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/longtable_doxygen.sty -------------------------------------------------------------------------------- /docs/latex/refman.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/refman.tex -------------------------------------------------------------------------------- /docs/latex/tabu_doxygen.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/latex/tabu_doxygen.sty -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/docs/logo.png -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/DialExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/examples/DialExample/CMakeLists.txt -------------------------------------------------------------------------------- /examples/DialExample/dial_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/examples/DialExample/dial_example.cpp -------------------------------------------------------------------------------- /examples/DijkstraExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/examples/DijkstraExample/CMakeLists.txt -------------------------------------------------------------------------------- /examples/DijkstraExample/dijkstra_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/examples/DijkstraExample/dijkstra_example.cpp -------------------------------------------------------------------------------- /examples/FloydWarshallExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/examples/FloydWarshallExample/CMakeLists.txt -------------------------------------------------------------------------------- /examples/FloydWarshallExample/floyd_warshall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/examples/FloydWarshallExample/floyd_warshall.cpp -------------------------------------------------------------------------------- /examples/NetworkDynamicsExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/examples/NetworkDynamicsExample/CMakeLists.txt -------------------------------------------------------------------------------- /examples/NetworkDynamicsExample/network_dynamics_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/examples/NetworkDynamicsExample/network_dynamics_example.cpp -------------------------------------------------------------------------------- /examples/PartitionExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/examples/PartitionExample/CMakeLists.txt -------------------------------------------------------------------------------- /examples/PartitionExample/partition_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/examples/PartitionExample/partition_example.cpp -------------------------------------------------------------------------------- /examples/PrimExample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/examples/PrimExample/CMakeLists.txt -------------------------------------------------------------------------------- /examples/PrimExample/prim_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/examples/PrimExample/prim_example.cpp -------------------------------------------------------------------------------- /historical/AGPL-v3.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/historical/AGPL-v3.0/LICENSE -------------------------------------------------------------------------------- /historical/AGPL-v3.0/github.com_ZigRazor_CXXGraph_issues_427.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/historical/AGPL-v3.0/github.com_ZigRazor_CXXGraph_issues_427.png -------------------------------------------------------------------------------- /include/CXXGraph/CXXGraph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/CXXGraph.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Edge/DirectedEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Edge/DirectedEdge.h -------------------------------------------------------------------------------- /include/CXXGraph/Edge/DirectedEdge_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Edge/DirectedEdge_decl.h -------------------------------------------------------------------------------- /include/CXXGraph/Edge/DirectedEdge_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Edge/DirectedEdge_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Edge/DirectedWeightedEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Edge/DirectedWeightedEdge.h -------------------------------------------------------------------------------- /include/CXXGraph/Edge/DirectedWeightedEdge_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Edge/DirectedWeightedEdge_decl.h -------------------------------------------------------------------------------- /include/CXXGraph/Edge/DirectedWeightedEdge_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Edge/DirectedWeightedEdge_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Edge/Edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Edge/Edge.h -------------------------------------------------------------------------------- /include/CXXGraph/Edge/Edge_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Edge/Edge_decl.h -------------------------------------------------------------------------------- /include/CXXGraph/Edge/Edge_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Edge/Edge_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Edge/UndirectedEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Edge/UndirectedEdge.h -------------------------------------------------------------------------------- /include/CXXGraph/Edge/UndirectedEdge_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Edge/UndirectedEdge_decl.h -------------------------------------------------------------------------------- /include/CXXGraph/Edge/UndirectedEdge_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Edge/UndirectedEdge_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Edge/UndirectedWeightedEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Edge/UndirectedWeightedEdge.h -------------------------------------------------------------------------------- /include/CXXGraph/Edge/UndirectedWeightedEdge_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Edge/UndirectedWeightedEdge_decl.h -------------------------------------------------------------------------------- /include/CXXGraph/Edge/UndirectedWeightedEdge_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Edge/UndirectedWeightedEdge_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Edge/Weighted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Edge/Weighted.h -------------------------------------------------------------------------------- /include/CXXGraph/Edge/Weighted_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Edge/Weighted_decl.h -------------------------------------------------------------------------------- /include/CXXGraph/Edge/Weighted_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Edge/Weighted_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/BellmanFord_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/BellmanFord_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/BestFirstSearch_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/BestFirstSearch_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/Boruvka_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/Boruvka_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/BreadthFirstSearch_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/BreadthFirstSearch_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/BronKerbosch_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/BronKerbosch_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/Connectivity_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/Connectivity_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/CycleDetection_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/CycleDetection_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/DepthFirstSearch_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/DepthFirstSearch_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/Dial_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/Dial_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/Dijkstra_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/Dijkstra_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/EulerianPath_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/EulerianPath_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/FloydWarshall_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/FloydWarshall_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/FordFulkerson_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/FordFulkerson_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/HopcroftKarp_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/HopcroftKarp_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/Kahn_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/Kahn_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/Kosaraju_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/Kosaraju_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/Kruskal_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/Kruskal_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/Prim_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/Prim_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/Tarjan_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/Tarjan_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/TopologicalSort_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/TopologicalSort_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/TransitiveReduction_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/TransitiveReduction_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Algorithm/WelshPowellColoring_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Algorithm/WelshPowellColoring_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Graph.h -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Graph_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Graph_decl.h -------------------------------------------------------------------------------- /include/CXXGraph/Graph/Graph_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/Graph_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/IO/IOUtility_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/IO/IOUtility_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/IO/InputOperation_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/IO/InputOperation_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Graph/IO/OutputOperation_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Graph/IO/OutputOperation_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Node/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Node/Node.h -------------------------------------------------------------------------------- /include/CXXGraph/Node/Node_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Node/Node_decl.h -------------------------------------------------------------------------------- /include/CXXGraph/Node/Node_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Node/Node_impl.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Partitioning/CoordinatedPartitionState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Partitioning/CoordinatedPartitionState.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Partitioning/CoordinatedRecord.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Partitioning/CoordinatedRecord.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Partitioning/EBV.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Partitioning/EBV.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Partitioning/EdgeBalancedVertexCut.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Partitioning/EdgeBalancedVertexCut.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Partitioning/GreedyVertexCut.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Partitioning/GreedyVertexCut.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Partitioning/HDRF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Partitioning/HDRF.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Partitioning/Partition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Partitioning/Partition.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Partitioning/PartitionAlgorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Partitioning/PartitionAlgorithm.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Partitioning/PartitionState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Partitioning/PartitionState.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Partitioning/PartitionStrategy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Partitioning/PartitionStrategy.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Partitioning/Partitioner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Partitioning/Partitioner.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Partitioning/PartitionerThread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Partitioning/PartitionerThread.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Partitioning/PartitioningStats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Partitioning/PartitioningStats.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Partitioning/Record.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Partitioning/Record.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Partitioning/Utility/Globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Partitioning/Utility/Globals.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Partitioning/WeightBalancedLibra.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Partitioning/WeightBalancedLibra.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Utility/ConstString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Utility/ConstString.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Utility/ConstValue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Utility/ConstValue.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Utility/PointerHash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Utility/PointerHash.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Utility/Reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Utility/Reader.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Utility/Runnable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Utility/Runnable.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Utility/SecureRandom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Utility/SecureRandom.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Utility/ThreadSafe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Utility/ThreadSafe.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Utility/TypeTraits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Utility/TypeTraits.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Utility/Typedef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Utility/Typedef.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Utility/Writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Utility/Writer.hpp -------------------------------------------------------------------------------- /include/CXXGraph/Utility/id_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/Utility/id_t.hpp -------------------------------------------------------------------------------- /include/CXXGraph/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/include/CXXGraph/version.h.in -------------------------------------------------------------------------------- /logos/CXXBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/logos/CXXBanner.png -------------------------------------------------------------------------------- /logos/CXXGRAPH_Footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/logos/CXXGRAPH_Footer.png -------------------------------------------------------------------------------- /logos/CXXGraph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/logos/CXXGraph.gif -------------------------------------------------------------------------------- /logos/CXXGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/logos/CXXGraph.png -------------------------------------------------------------------------------- /logos/CXXGraph_footer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/logos/CXXGraph_footer.gif -------------------------------------------------------------------------------- /packaging/deb/CXXGraph/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/packaging/deb/CXXGraph/DEBIAN/control -------------------------------------------------------------------------------- /packaging/deb/clean_deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/packaging/deb/clean_deb.sh -------------------------------------------------------------------------------- /packaging/deb/make_deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/packaging/deb/make_deb.sh -------------------------------------------------------------------------------- /packaging/make_packaging.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/packaging/make_packaging.sh -------------------------------------------------------------------------------- /packaging/rpm/SPECS/CXXGraph.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/packaging/rpm/SPECS/CXXGraph.spec -------------------------------------------------------------------------------- /packaging/rpm/clean_rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/packaging/rpm/clean_rpm.sh -------------------------------------------------------------------------------- /packaging/rpm/make_rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/packaging/rpm/make_rpm.sh -------------------------------------------------------------------------------- /packaging/tarballs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/packaging/tarballs.sh -------------------------------------------------------------------------------- /packaging/targzip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/packaging/targzip.sh -------------------------------------------------------------------------------- /packaging/zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/packaging/zip.sh -------------------------------------------------------------------------------- /test/BFSTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/BFSTest.cpp -------------------------------------------------------------------------------- /test/BellmanFordTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/BellmanFordTest.cpp -------------------------------------------------------------------------------- /test/BestFirstSearchTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/BestFirstSearchTest.cpp -------------------------------------------------------------------------------- /test/BinaryIOTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/BinaryIOTest.cpp -------------------------------------------------------------------------------- /test/BoruvkaTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/BoruvkaTest.cpp -------------------------------------------------------------------------------- /test/BronKerboschTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/BronKerboschTest.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/ConnectivityTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/ConnectivityTest.cpp -------------------------------------------------------------------------------- /test/CycleCheckTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/CycleCheckTest.cpp -------------------------------------------------------------------------------- /test/DFSTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/DFSTest.cpp -------------------------------------------------------------------------------- /test/DOTTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/DOTTest.cpp -------------------------------------------------------------------------------- /test/DialTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/DialTest.cpp -------------------------------------------------------------------------------- /test/DijkstraTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/DijkstraTest.cpp -------------------------------------------------------------------------------- /test/DirectedEdgeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/DirectedEdgeTest.cpp -------------------------------------------------------------------------------- /test/DirectedWeightedEdgeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/DirectedWeightedEdgeTest.cpp -------------------------------------------------------------------------------- /test/EdgeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/EdgeTest.cpp -------------------------------------------------------------------------------- /test/EulerPathTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/EulerPathTest.cpp -------------------------------------------------------------------------------- /test/FWTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/FWTest.cpp -------------------------------------------------------------------------------- /test/FloydWarshallTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/FloydWarshallTest.cpp -------------------------------------------------------------------------------- /test/FordFulkersonTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/FordFulkersonTest.cpp -------------------------------------------------------------------------------- /test/GraphSlicingTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/GraphSlicingTest.cpp -------------------------------------------------------------------------------- /test/GraphTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/GraphTest.cpp -------------------------------------------------------------------------------- /test/HopcroftKarpTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/HopcroftKarpTest.cpp -------------------------------------------------------------------------------- /test/KahnTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/KahnTest.cpp -------------------------------------------------------------------------------- /test/KosarajuTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/KosarajuTest.cpp -------------------------------------------------------------------------------- /test/KruskalTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/KruskalTest.cpp -------------------------------------------------------------------------------- /test/MTXTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/MTXTest.cpp -------------------------------------------------------------------------------- /test/NodeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/NodeTest.cpp -------------------------------------------------------------------------------- /test/PartitionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/PartitionTest.cpp -------------------------------------------------------------------------------- /test/PrimTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/PrimTest.cpp -------------------------------------------------------------------------------- /test/RWOutputTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/RWOutputTest.cpp -------------------------------------------------------------------------------- /test/TarjanTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/TarjanTest.cpp -------------------------------------------------------------------------------- /test/TopologicalSortTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/TopologicalSortTest.cpp -------------------------------------------------------------------------------- /test/TransitiveReductionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/TransitiveReductionTest.cpp -------------------------------------------------------------------------------- /test/TypeTraitsTest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/TypeTraitsTest.hpp -------------------------------------------------------------------------------- /test/UndirectedEdgeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/UndirectedEdgeTest.cpp -------------------------------------------------------------------------------- /test/UndirectedWeightedEdgeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/UndirectedWeightedEdgeTest.cpp -------------------------------------------------------------------------------- /test/UnionFindTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/UnionFindTest.cpp -------------------------------------------------------------------------------- /test/Utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/Utilities.hpp -------------------------------------------------------------------------------- /test/WelshPowellColoringTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/WelshPowellColoringTest.cpp -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/main.cpp -------------------------------------------------------------------------------- /test/test_dot_directed.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/test_dot_directed.dot -------------------------------------------------------------------------------- /test/test_dot_undirected.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/test_dot_undirected.dot -------------------------------------------------------------------------------- /test/test_dot_weighted.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/test_dot_weighted.dot -------------------------------------------------------------------------------- /test/test_mtx.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/test_mtx.mtx -------------------------------------------------------------------------------- /test/test_mtx_symmetric.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZigRazor/CXXGraph/HEAD/test/test_mtx_symmetric.mtx --------------------------------------------------------------------------------