Added Nitfol and Frotz source code.
[rodin/chimara.git] / interpreters / nitfol / solve.h
diff --git a/interpreters/nitfol/solve.h b/interpreters/nitfol/solve.h
new file mode 100644 (file)
index 0000000..89061aa
--- /dev/null
@@ -0,0 +1,26 @@
+/* This is a Cfunctions (version 0.24) generated header file.
+   Cfunctions is a free program for extracting headers from C files.
+   Get Cfunctions from `http://www.hayamasa.demon.co.uk/cfunctions'. */
+
+/* This file was generated with:
+`cfunctions -i solve.c' */
+#ifndef CFH_SOLVE_H
+#define CFH_SOLVE_H
+
+/* From `solve.c': */
+typedef struct cycleequation cycleequation;
+struct cycleequation {
+  cycleequation *next;
+  
+  int *var;
+  const int *min;
+  int xcoefficient;
+  int ycoefficient;
+} 
+;
+void automap_add_cycle (cycleequation *cycle );
+void automap_delete_cycles (void);
+void automap_cycle_elimination (void);
+void automap_cycles_fill_values (void);
+
+#endif /* CFH_SOLVE_H */