~ubuntu-branches/debian/sid/maxflow/sid

« back to all changes in this revision

Viewing changes to maxflow.cpp

  • Committer: Package Import Robot
  • Author(s): Gert Wollny
  • Date: 2015-07-22 12:21:43 UTC
  • Revision ID: package-import@ubuntu.com-20150722122143-wmgknhhujxlvhb45
Tags: upstream-3.0.4
ImportĀ upstreamĀ versionĀ 3.0.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* maxflow.cpp */
 
2
/*
 
3
    Copyright Vladimir Kolmogorov (vnk@ist.ac.at), Yuri Boykov (yuri@csd.uwo.ca) 
 
4
 
 
5
    This file is part of MAXFLOW.
 
6
 
 
7
    MAXFLOW is free software: you can redistribute it and/or modify
 
8
    it under the terms of the GNU General Public License as published by
 
9
    the Free Software Foundation, either version 3 of the License, or
 
10
    (at your option) any later version.
 
11
 
 
12
    MAXFLOW is distributed in the hope that it will be useful,
 
13
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
    GNU General Public License for more details.
 
16
 
 
17
    You should have received a copy of the GNU General Public License
 
18
    along with MAXFLOW.  If not, see <http://www.gnu.org/licenses/>.
 
19
*/
 
20
 
 
21
 
 
22
#include <stdio.h>
 
23
 
 
24
#define MAXFLOW_INCLUDE_TEMPLATE_IMPLEMENTATION 1
 
25
#include <maxflow.h>
 
26
 
 
27
namespace maxflow {
 
28
template class Graph<int,int,int>;
 
29
template class Graph<short,int,int>;
 
30
template class Graph<float,float,float>;
 
31
template class Graph<double,double,double>;
 
32
}
 
33