Page MenuHomec4science

tamaas.hh
No OneTemporary

File Metadata

Created
Wed, May 1, 13:30

tamaas.hh

/**
* @mainpage Welcome to Tamaas !
*
* @section Introduction
* Tamaas is a spectral-boundary-element based contact library. It is made with
* love to be fast and friendly!
*
* @author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
* @author Lucas Frérot <lucas.frerot@epfl.ch>
* @author Valentine Rey <valentine.rey@epfl.ch>
*
* @section LICENSE
*
* Copyright (©) 2016-2017 EPFL (Ecole Polytechnique Fédérale de
* Lausanne) Laboratory (LSMS - Laboratoire de Simulation en Mécanique des
* Solides)
*
* Tamaas is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* Tamaas is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Tamaas. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#ifndef TAMAAS_HH
#define TAMAAS_HH
/* -------------------------------------------------------------------------- */
#include <exception>
#include <string>
#include <complex>
#include <iostream>
/* -------------------------------------------------------------------------- */
/// Namespace macros
#define __BEGIN_TAMAAS__ namespace tamaas {
#define __END_TAMAAS__ }
/* -------------------------------------------------------------------------- */
__BEGIN_TAMAAS__
/* -------------------------------------------------------------------------- */
/// Common types definitions
typedef double Real;
typedef unsigned int UInt;
typedef int Int;
typedef std::complex<Real> Complex;
static const Real zero_threshold = 1e-14;
/* -------------------------------------------------------------------------- */
/// initialize tamaas (0 threads => let OMP_NUM_THREADS decide)
void initialize(UInt num_threads = 0);
/// cleanup tamaas
void finalize();
/* -------------------------------------------------------------------------- */
class Exception : public std::exception {
public:
Exception(const std::string & mesg) throw() {
msg = mesg;
}
virtual const char* what() const throw() {
return msg.c_str();
}
virtual ~Exception() throw() {}
private:
std::string msg;
};
/* -------------------------------------------------------------------------- */
__END_TAMAAS__
/* -------------------------------------------------------------------------- */
#define TAMAAS_EXCEPTION(mesg) { \
std::stringstream sstr; \
sstr \
<< __FILE__ \
<< ":" << __LINE__ << ":FATAL: " \
<< mesg << std::endl; \
std::cerr.flush(); \
throw ::tamaas::Exception(sstr.str()); \
}
#define SURFACE_FATAL(mesg) TAMAAS_EXCEPTION(mesg)
#if defined(TAMAAS_DEBUG)
#define TAMAAS_ASSERT(cond, reason) do { \
if (!(cond)) { \
TAMAAS_EXCEPTION(#cond " assert failed: " << reason); \
} } while(0)
#define TAMAAS_DEBUG_EXCEPTION(reason) TAMAAS_EXCEPTION(reason)
#else
#define TAMAAS_ASSERT(cond, reason)
#define TAMAAS_DEBUG_EXCEPTION(reason)
#endif
#define TAMAAS_ACCESSOR(var, type, name) type & get##name() { return var; } \
void set##name(const type & new_var) { var = new_var; }
/* -------------------------------------------------------------------------- */
#endif // TAMAAS_HH

Event Timeline