Newer
Older
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
#warning This file is deprecated. Its contents have moved to stringutility.hh and math.hh, \
or will disappear completely.
/** \file
\brief Miscellaneous helper stuff
*/
Jorrit Fahlke
committed
#include <algorithm>
#include <cstddef>
#include <cstring>
Jorrit Fahlke
committed
#include <iterator>
#include <complex>
#include <dune/common/deprecated.hh>
#include <dune/common/typetraits.hh>
Oliver Sander
committed
#include <dune/common/stringutility.hh>
#include <dune/common/math.hh>
/**
* \code
*#include <dune/common/misc.hh>
* \endcode
*/
template<class T>
T SQR (T t) DUNE_DEPRECATED_MSG("Use method sqr from math.hh instead");
template<class T>
T SQR (T t)
{
return t*t;
}
//! Calculates m^p at compile time
template <int m, int p>
struct DUNE_DEPRECATED_MSG ("Use class StaticPower from file power.hh instead")Power_m_p
{
// power stores m^p
enum { power = (m * Power_m_p<m,p-1>::power ) };
};
//! end of recursion via specialization
template <int m>
struct DUNE_DEPRECATED_MSG ("Use class StaticPower from file power.hh instead")Power_m_p< m , 0>
{
// m^0 = 1
enum { power = 1 };
};
//********************************************************************
//
// generate filenames with timestep number in it
//
//********************************************************************
/** \brief Generate filenames with timestep number in it */
inline std::string genFilename(const std::string& path,
const std::string& fn,
int ntime,
int precision = 6)
{
if(path.size() > 0)
{
name << path;
name << "/";
}
name << fn << std::setw(precision) << std::setfill('0') << ntime;
// Return the string corresponding to the stringstream
}
Jorrit Fahlke
committed