Skip to content

Commit

Permalink
fixed headers on readme
Browse files Browse the repository at this point in the history
  • Loading branch information
spirosmaggioros committed Nov 20, 2024
1 parent 23da52f commit e8312f6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ AlgoPlus is a C++ library that includes ready-to-use complex **data structures**
### Example:

```cpp
#include <machine_learning/clustering/DBSCAN/dbscan.h>
#include "machine_learning/clustering/DBSCAN/dbscan.h"

// AlgoPlus now has Machine Learning classes!
int main(){
Expand All @@ -31,7 +31,7 @@ int main(){
...
}

#include <machine_learning/image/edge_detection/sobel_operator.h>
#include "machine_learning/image/edge_detection/sobel_operator.h"

// As well as image processing algorithms!
int main(){
Expand All @@ -44,8 +44,8 @@ int main(){
}


#include <graph.h>
#include <graph_visualization.h>
#include "graph/graph.h"
#include "visualization/graph_visualization.h"
// And of course, every data structure that you need!
int main(){
weighted_graph<int> g("undirected");
Expand Down

0 comments on commit e8312f6

Please sign in to comment.