angel
mercurial changeset:
|
00001 // $Id: create_and_write.cpp,v 1.1 2008/02/28 14:57:32 gottschling Exp $ 00002 /* 00003 ############################################################# 00004 # This file is part of angel released under the BSD license # 00005 # The full COPYRIGHT notice can be found in the top # 00006 # level directory of the angel distribution # 00007 ############################################################# 00008 */ 00009 00010 #include <angel/angel.hpp> 00011 00012 00013 using namespace angel; 00014 00015 00016 int main() 00017 { 00018 // Create a graph with 3 independent, 4 intermediate, and 2 dependent vertices 00019 c_graph_t g(3, 4, 2); 00020 00021 00022 // Print the graph 00023 write_graph_eliad(g); 00024 00025 00026 return 0; 00027 }