]> granicus.if.org Git - graphviz/commitdiff
remove the need to have lib/ortho in the include path
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 30 Aug 2020 19:33:05 +0000 (12:33 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 5 Oct 2020 14:31:00 +0000 (07:31 -0700)
Related to #1785.

lib/ortho/fPQ.h
lib/ortho/maze.h
lib/ortho/partition.h
lib/ortho/sgraph.h
lib/ortho/structures.h

index fba181c4279bf10d47430595b23b131c66846b7d..4bc71b5602b9ae18b19c829846a5aacb1e12517b 100644 (file)
@@ -13,7 +13,7 @@
 
 /* Priority Queue Code for shortest path in graph */
 
-#include <sgraph.h>
+#include <ortho/sgraph.h>
 /* typedef snode** PQ; */
 
 #define N_VAL(n) (n)->n_val
index 89891e42d91e78177e8533d16f78b87572722c91..2f18963ac8043a24d2c541b6d0de0904ca96e41a 100644 (file)
@@ -14,7 +14,7 @@
 #ifndef MAZE_H
 #define MAZE_H
 
-#include <sgraph.h>
+#include <ortho/sgraph.h>
 
 enum {M_RIGHT=0, M_TOP, M_LEFT, M_BOTTOM};
 
index 145c3545ac017f14a51301a482252eeef7d04be1..80eeaa5326b149ae9bbaa18e024c80bd42d6af4e 100644 (file)
@@ -14,7 +14,7 @@
 #ifndef PARTITION_H
 #define PARTITION_H
 
-#include <maze.h>
+#include <ortho/maze.h>
 
 extern boxf* partition (cell*, int, int*, boxf);
 
index 69a35a5c93eee654156d3c0bead4a102271b1fbe..75d15e024ca218622ddf9001c252800347dc0817 100644 (file)
@@ -14,7 +14,7 @@
 #ifndef SEARCH_G_H
 #define SEARCH_G_H
 
-#include "structures.h"
+#include <ortho/structures.h>
 
 typedef struct snode snode;
 typedef struct sedge sedge;
index 3df5ebb1fa35437c2e09dcca1417b00dffc5f600..122737d904acdd42c488088c775bc8e472597393 100644 (file)
@@ -16,7 +16,7 @@
 
 #include "types.h"
 #include "cgraph.h"
-#include "rawgraph.h"
+#include <ortho/rawgraph.h>
 
 typedef struct {
     double p1, p2;