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.
consoleoutputcolors.h
1 // Copyright Joakim Karlsson & Kim Gräsman 2010-2013.
2 // Distributed under the Boost Software License, Version 1.0.
3 // (See accompanying file LICENSE_1_0.txt or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
5 
6 #ifndef CONSOLEOUTPUTCOLORS_H_
7 #define CONSOLEOUTPUTCOLORS_H_
8 
9 #define PASSED_OUTPUT_COLOR "\033[0;32m"
10 #define FAILED_OUTPUT_COLOR "\033[0;31m"
11 #define DEFAULT_OUTPUT_COLOR "\033[0m"
12 
13 #endif /* CONSOLEOUTPUTCOLORS_H_ */