aboutsummaryrefslogtreecommitdiffstats
path: root/test/ccured_olden/em3d/main.c
blob: 61a3af4f08ed846f2d3b3ccaf9e6af047fe1c80c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#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;
}