blitzdg
an open-source project aiming to implement parallel discontinuous Galerkin (dg) solvers for common partial differential equations systems using blitz++ for array and tensor manipulations and MPI for distributed parallelism.
constraints.h
1 
2 // Copyright Joakim Karlsson & Kim Gräsman 2010-2013.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #ifndef IGLOO_CONSTRAINTS_H
8 #define IGLOO_CONSTRAINTS_H
9 
10 #include "containsconstraint.h"
11 #include "endswithconstraint.h"
12 #include "equalsconstraint.h"
13 #include "haslengthconstraint.h"
14 #include "isgreaterthanconstraint.h"
15 #include "islessthanconstraint.h"
16 #include "startswithconstraint.h"
17 #include "fulfillsconstraint.h"
18 #include "equalswithdeltaconstraint.h"
19 #include "equalscontainerconstraint.h"
20 
21 #endif