https://github.com/feelpp/feelpp
Raw File
Tip revision: 77ff318a3d2f026f0e706896aecf570465004838 authored by Christophe Prud'homme on 23 February 2022, 16:15:49 UTC
electric does not support P3 @vincentchabannes
Tip revision: 77ff318
test_imsimplex.cpp
/* -*- mode: c++; coding: utf-8; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; show-trailing-whitespace: t -*- vim:fenc=utf-8:ft=cpp:et:sw=4:ts=4:sts=4

  This file is part of the Feel library

  Author(s): Christophe Prud'homme <christophe.prudhomme@feelpp.org>
       Date: 2008-06-19

  Copyright (C) 2008-2012 University Joseph Fourier (Grenoble I)

  This library 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.0 of the License, or (at your option) any later version.

  This library 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 this library; if not, write to the Free Software
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
*/
/**
   \file test_imsimplex.cpp
   \author Christophe Prud'homme <christophe.prudhomme@feelpp.org>
   \date 2008-06-19
 */
#include <feel/feelpoly/im.hpp>


int main( int argc, char** argv )
{
    
    using namespace Feel;
    Environment env( argc, argv );

    IMSimplex<2,double> im2;
    for( int q = 0; q < 20; q++ )
        im2.create(q);

    IMSimplex<3,double> im3;
    for( int q = 0; q < 20; q++ )
        im3.create(q);
}
back to top