Changeset 708:429dfcbbf47d in lemon-0.x for src
- Timestamp:
- 07/19/04 15:31:47 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@960
- Location:
- src/benchmark
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/benchmark/Makefile.am
r704 r708 1 AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/src/work 1 AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/src/work -I$(top_srcdir)/src/work/marci 2 2 3 noinst_PROGRAMS = graph-bench 3 noinst_PROGRAMS = graph-bench hcube 4 4 5 5 graph_bench_SOURCES = graph-bench.cc 6 7 hcube_SOURCES = hcube.cc -
src/benchmark/graph-bench.cc
r699 r708 4 4 #include<iostream> 5 5 #include<sage_graph.h> 6 #include<vector> 6 7 7 8 using namespace hugo; … … 49 50 Graph G; 50 51 51 Node nodes[n]; 52 // Node nodes[n]; 53 std::vector<Node> nodes(n); 52 54 for(int i=0;i<n;i++) nodes[i]=G.addNode(); 53 55 54 Edge equ[rat]; 56 //Edge equ[rat]; 57 std::vector<Edge> equ(rat); 55 58 56 59 unsigned long long int count;
Note: See TracChangeset
for help on using the changeset viewer.