Skip to content

Releases: ZigRazor/CXXGraph

Release v0.1.0

06 Jul 16:15
cbe8885
Compare
Choose a tag to compare

Introduced Features

  • Added Import from .csv files

Introduced Tests

  • Introduced Tests for import

Fixed Issues

Resolved Major Bug

In this realese is solved a major bug that affects the "addEdge" functions. A good rework to substitute std:set with std::list container but manteining the uniqueness of the edge and the node.

Future Developments

  • Implementation of other formats for Export.
  • New Algorthims
  • Partition Algorithms
  • More in-depth tests

Release v0.0.9

05 Jul 08:16
86d32dd
Compare
Choose a tag to compare

Introduced Features

  • Added Working Directory to interface to Export the Graph

Introduced Tests

  • Adapted Tests to new interface

Fixed Issues

Future Developments

  • Implementation of other formats for Export.
  • New Algorthims
  • More in-depth tests

Release v0.0.8

30 Jun 15:53
79b7d66
Compare
Choose a tag to compare

Introduced Features

Introduced Export for Standard Output File (.csv) of Node Features and Edge Weights

Introduced Tests

Introduced basic Test for Standard Output File (.csv) export

Future Developments

  • Implementation of other formats for Export.
  • New Algorthims
  • More in-depth tests

Release 0.0.7

28 Jun 08:18
54c9a9d
Compare
Choose a tag to compare

Introduced Features

  • Introduced basic implementation of writeToFile function.

Introduced Tests

  • Introduced basic Test for writeToFile

Future Developments

  • More detailed implementation of csv format for output file and other formats.
  • New Algorthims
  • More in-depth tests

Release 0.0.6

22 Jun 08:31
ea8b7e6
Compare
Choose a tag to compare

Release Version 0.0.6

Introduced Features

Introduced Cycle Check for Directed Graph with BFS.

Introduced Tests

Introduced Test for Cycle Checks

Future Developments

  • New Algorthims
  • More in-depth tests

Release 0.0.5

22 Jun 08:23
Compare
Choose a tag to compare

Release Version 0.0.5

Introduced Features

Introduced Cycle Check for Directed Graph, DFS.

Introduced Tests

Introduced Test for Cycle Checks

Future Developments

  • New Algorthims
  • More in-depth tests

DFS Algorithm and Various Improvements

16 Oct 11:07
Compare
Choose a tag to compare

Added DFS Algorithm
Improved performance of BFS Algorithm
"ctest" support and configuration for CMake

BFS algorithm and Correction

16 Oct 09:22
Compare
Choose a tag to compare

Added BFS algorithm.
Tests on BFS.
Added Test and some extreme cases correction in the Dijkstra algorithm.
Added the funtion that return the node set from the graph and test for this functionalities.

First Release

15 Oct 14:30
Compare
Choose a tag to compare

First Official Release.
Added content:

  • Dijkstra Algorithm
  • Changed Interface of Adjacency Matrix Type
  • Simple Test over Dijkstra Algorithm

First Beta Release

15 Oct 10:03
247e5e2
Compare
Choose a tag to compare
First Beta Release Pre-release
Pre-release

This pre-release is a beta with only the base structures for the manage of the Graph in C++.
Added the Adjacency Matrix from the Graph.
No algorithm over the graph implemented yet.