[cig-commits] r7501 - cs/cigma/branches/cigma-0.9/src

luis at geodynamics.org luis at geodynamics.org
Tue Jun 26 09:47:09 PDT 2007


Author: luis
Date: 2007-06-26 09:47:09 -0700 (Tue, 26 Jun 2007)
New Revision: 7501

Modified:
   cs/cigma/branches/cigma-0.9/src/array.c
   cs/cigma/branches/cigma-0.9/src/attr.c
   cs/cigma/branches/cigma-0.9/src/cube.c
   cs/cigma/branches/cigma-0.9/src/dataset.c
   cs/cigma/branches/cigma-0.9/src/det.c
   cs/cigma/branches/cigma-0.9/src/fe.c
   cs/cigma/branches/cigma-0.9/src/field.c
   cs/cigma/branches/cigma-0.9/src/io.c
   cs/cigma/branches/cigma-0.9/src/mesh.c
   cs/cigma/branches/cigma-0.9/src/points.c
   cs/cigma/branches/cigma-0.9/src/rule.c
   cs/cigma/branches/cigma-0.9/src/split.c
Log:
darcs patch: Changed includes since header files were moved to source dir


Modified: cs/cigma/branches/cigma-0.9/src/array.c
===================================================================
--- cs/cigma/branches/cigma-0.9/src/array.c	2007-06-26 16:43:22 UTC (rev 7500)
+++ cs/cigma/branches/cigma-0.9/src/array.c	2007-06-26 16:47:09 UTC (rev 7501)
@@ -1,7 +1,7 @@
 #include <stdlib.h>
 #include <hdf5.h>
-#include <cigma/array.h>
-#include <cigma/attr.h>
+#include "array.h"
+#include "attr.h"
 
 
 

Modified: cs/cigma/branches/cigma-0.9/src/attr.c
===================================================================
--- cs/cigma/branches/cigma-0.9/src/attr.c	2007-06-26 16:43:22 UTC (rev 7500)
+++ cs/cigma/branches/cigma-0.9/src/attr.c	2007-06-26 16:47:09 UTC (rev 7501)
@@ -1,7 +1,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <hdf5.h>
-#include <cigma/attr.h>
+#include "attr.h"
 
 /****************************************************************************
  * Some of the following functions were based from the H5ATTR.c             *

Modified: cs/cigma/branches/cigma-0.9/src/cube.c
===================================================================
--- cs/cigma/branches/cigma-0.9/src/cube.c	2007-06-26 16:43:22 UTC (rev 7500)
+++ cs/cigma/branches/cigma-0.9/src/cube.c	2007-06-26 16:47:09 UTC (rev 7501)
@@ -1,6 +1,6 @@
 #include <stdlib.h>
 #include <stdio.h>
-#include <cigma/cube.h>
+#include "cube.h"
 
 
 static int hexahedral_connectivity(cube_t *cube);

Modified: cs/cigma/branches/cigma-0.9/src/dataset.c
===================================================================
--- cs/cigma/branches/cigma-0.9/src/dataset.c	2007-06-26 16:43:22 UTC (rev 7500)
+++ cs/cigma/branches/cigma-0.9/src/dataset.c	2007-06-26 16:47:09 UTC (rev 7501)
@@ -1,7 +1,7 @@
 #include <stdlib.h>
 #include <hdf5.h>
-#include <cigma/attr.h>
-#include <cigma/dataset.h>
+#include "attr.h"
+#include "dataset.h"
 
 
 

Modified: cs/cigma/branches/cigma-0.9/src/det.c
===================================================================
--- cs/cigma/branches/cigma-0.9/src/det.c	2007-06-26 16:43:22 UTC (rev 7500)
+++ cs/cigma/branches/cigma-0.9/src/det.c	2007-06-26 16:47:09 UTC (rev 7501)
@@ -1,4 +1,4 @@
-#include <cigma/det.h>
+#include "det.h"
 
 double det3x3(double *m)
 {

Modified: cs/cigma/branches/cigma-0.9/src/fe.c
===================================================================
--- cs/cigma/branches/cigma-0.9/src/fe.c	2007-06-26 16:43:22 UTC (rev 7500)
+++ cs/cigma/branches/cigma-0.9/src/fe.c	2007-06-26 16:47:09 UTC (rev 7501)
@@ -1,4 +1,4 @@
-#include <cigma/fe.h>
+#include "fe.h"
 
 void fe_jacobian(fe_t *fe, double *x, double xi[3], double J[3*3])
 {

Modified: cs/cigma/branches/cigma-0.9/src/field.c
===================================================================
--- cs/cigma/branches/cigma-0.9/src/field.c	2007-06-26 16:43:22 UTC (rev 7500)
+++ cs/cigma/branches/cigma-0.9/src/field.c	2007-06-26 16:47:09 UTC (rev 7501)
@@ -1,10 +1,10 @@
 #include <stdlib.h>
 #include <hdf5.h>
-#include <cigma/field.h>
-#include <cigma/io.h>
-#include <cigma/fe.h>
-#include <cigma/mesh.h>
-#include <cigma/dataset.h>
+#include "field.h"
+#include "io.h"
+#include "fe.h"
+#include "mesh.h"
+#include "dataset.h"
 #include "elements.h"
 
 

Modified: cs/cigma/branches/cigma-0.9/src/io.c
===================================================================
--- cs/cigma/branches/cigma-0.9/src/io.c	2007-06-26 16:43:22 UTC (rev 7500)
+++ cs/cigma/branches/cigma-0.9/src/io.c	2007-06-26 16:47:09 UTC (rev 7501)
@@ -1,8 +1,8 @@
 #include <string.h>
 #include <hdf5.h>
-#include <cigma/io.h>
-#include <cigma/attr.h>
-#include <cigma/split.h>
+#include "io.h"
+#include "attr.h"
+#include "split.h"
 
 
 

Modified: cs/cigma/branches/cigma-0.9/src/mesh.c
===================================================================
--- cs/cigma/branches/cigma-0.9/src/mesh.c	2007-06-26 16:43:22 UTC (rev 7500)
+++ cs/cigma/branches/cigma-0.9/src/mesh.c	2007-06-26 16:47:09 UTC (rev 7501)
@@ -1,9 +1,9 @@
 #include <stdlib.h>
 #include <assert.h>
 #include <hdf5.h>
-#include <cigma/io.h>
-#include <cigma/mesh.h>
-#include <cigma/dataset.h>
+#include "io.h"
+#include "mesh.h"
+#include "dataset.h"
 
 
 

Modified: cs/cigma/branches/cigma-0.9/src/points.c
===================================================================
--- cs/cigma/branches/cigma-0.9/src/points.c	2007-06-26 16:43:22 UTC (rev 7500)
+++ cs/cigma/branches/cigma-0.9/src/points.c	2007-06-26 16:47:09 UTC (rev 7501)
@@ -1,8 +1,8 @@
 #include <stdlib.h>
 #include <hdf5.h>
-#include <cigma/points.h>
-#include <cigma/array.h>
-#include <cigma/io.h>
+#include "points.h"
+#include "array.h"
+#include "io.h"
 
 
 

Modified: cs/cigma/branches/cigma-0.9/src/rule.c
===================================================================
--- cs/cigma/branches/cigma-0.9/src/rule.c	2007-06-26 16:43:22 UTC (rev 7500)
+++ cs/cigma/branches/cigma-0.9/src/rule.c	2007-06-26 16:47:09 UTC (rev 7501)
@@ -1,9 +1,9 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <hdf5.h>
-#include <cigma/io.h>
-#include <cigma/rule.h>
-#include <cigma/dataset.h>
+#include "io.h"
+#include "rule.h"
+#include "dataset.h"
 
 
 

Modified: cs/cigma/branches/cigma-0.9/src/split.c
===================================================================
--- cs/cigma/branches/cigma-0.9/src/split.c	2007-06-26 16:43:22 UTC (rev 7500)
+++ cs/cigma/branches/cigma-0.9/src/split.c	2007-06-26 16:47:09 UTC (rev 7501)
@@ -1,6 +1,6 @@
 #include <stdlib.h>
 #include <string.h>
-#include <cigma/split.h>
+#include "split.h"
 
 
 /*



More information about the cig-commits mailing list