main.cc
author Alpar Juttner <alpar@cs.elte.hu>
Tue, 02 Jun 2009 16:27:06 +0100
changeset 2 76d160eba8d4
permissions -rw-r--r--
Help comments in CMakeLists.txt
alpar@0
     1
/* -*- mode: C++; indent-tabs-mode: nil; -*-
alpar@0
     2
 *
alpar@0
     3
 * This file is a part of LEMON, a generic C++ optimization library.
alpar@0
     4
 *
alpar@0
     5
 * Copyright (C) 2003-2009
alpar@0
     6
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
alpar@0
     7
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
alpar@0
     8
 *
alpar@0
     9
 * Permission to use, modify and distribute this software is granted
alpar@0
    10
 * provided that this copyright notice appears in all copies. For
alpar@0
    11
 * precise terms see the accompanying LICENSE file.
alpar@0
    12
 *
alpar@0
    13
 * This software is provided "AS IS" with no warranty of any kind,
alpar@0
    14
 * express or implied, and with no claim as to its suitability for any
alpar@0
    15
 * purpose.
alpar@0
    16
 *
alpar@0
    17
 */
alpar@0
    18
alpar@0
    19
#include<lemon/list_graph.h>
alpar@0
    20
alpar@0
    21
///The main entry point
alpar@0
    22
int main()
alpar@0
    23
{
alpar@0
    24
  lemon::ListGraph g;
alpar@0
    25
  g.addNode();
alpar@0
    26
}