Altered file names so I can work on a basic, working verison of this project. Additionaly, I added author, date, version #, and briefs at the head of all code files.

This commit is contained in:
2026-04-09 09:53:54 -04:00
parent 7d82612b69
commit e0c68e7cef
5 changed files with 95 additions and 27 deletions

View File

@@ -1,10 +1,20 @@
// Linked List Cycle.cpp :
/**
* @author: Lewis Price
* @date: 06-09-2026 (MM-DD-YYYY)
* @brief: This file contains the code required for running the Graph Theory project. It includes the main function and several test case graphs to demonstrate the functionality of the Flat_Buffer_Graph class.
* @
* @version: 1.0.0
*/
#include "Graph.h"
#include "Flat_Buffer_Graph.h"
#include <iostream>
using namespace std;
int main() {
Flat_Buffer_Graph* g = new Flat_Buffer_Graph(5, 7);
g->add_point("Charlotte", 1.2222, 1.22222, 720.73425);
g->add_point("Waco", 1.1111, 1.1111, 200.00);
g->add_edge(1, 1, 20);
g->print_graph();
}