aboutsummaryrefslogtreecommitdiffstats
path: root/test/ccured_olden/em3d/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/ccured_olden/em3d/main.c')
-rw-r--r--test/ccured_olden/em3d/main.c45
1 files changed, 0 insertions, 45 deletions
diff --git a/test/ccured_olden/em3d/main.c b/test/ccured_olden/em3d/main.c
deleted file mode 100644
index 61a3af4f..00000000
--- a/test/ccured_olden/em3d/main.c
+++ /dev/null
@@ -1,45 +0,0 @@
-#include <stdio.h>
-
-#include "em3d.h"
-#include "make_graph.h"
-
-#define chatting(A)
-
-void print_graph(graph_t graph)
-{
-#ifdef GET_OUT
- node_t *cur_node;
-
- for(cur_node=graph.e_nodes; cur_node; cur_node=cur_node->next)
- {
- chatting(("E: value %f, from_count %d\n",cur_node->value,
- cur_node->from_count));
- }
- for(cur_node=graph.h_nodes; cur_node; cur_node=cur_node->next)
- {
- chatting(("H: value %f, from_count %d\n",cur_node->value,
- cur_node->from_count));
- }
-#endif GET_OUT
-}
-
-int iters;
-
-int main(int argc, char *argv[])
-{
- int i;
- graph_t graph;
-
- dealwithargs(argc,argv);
- graph=initialize_graph();
- print_graph(graph);
-
- for (i = 0; i < iters; i++)
- {
- compute_nodes(graph.e_nodes);
- compute_nodes(graph.h_nodes);
- fprintf(stderr, "Completed a computation phase: %d\n", i);
- print_graph(graph);
- }
- return 0;
-}