Page MenuHomec4science

test_materials_toolbox.cc
No OneTemporary

File Metadata

Created
Sat, Jun 1, 21:19

test_materials_toolbox.cc

/**
* file test_materials_toolbox.cc
*
* @author Till Junge <till.junge@epfl.ch>
*
* @date 04 May 2017
*
* @brief tests for material toolbox
*
* @section LICENCE
*
* Copyright (C) 2017 Till Junge
*
* µSpectre is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3, or (at
* your option) any later version.
*
* µSpectre 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNU Emacs; see the file COPYING. If not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include <boost/test/unit_test.hpp>
#include "materials/materials_toolbox.hh"
#include <iostream>
#include <Eigen/Dense>
namespace muSpectre {
BOOST_AUTO_TEST_SUITE(materials_toolbox)
BOOST_AUTO_TEST_CASE(identity_test) {
//auto I = I2<3>();
//std::cout << voigt::outer<3>(voigt::I2<3>(), voigt::I2<3>()) <<std::endl;
//std::cout << voigt::I2<3>() << std::endl;
//std::cout << voigt::I4<3>() << std::endl;
//std::cout << voigt::I4RT<3>() << std::endl;
//std::cout << voigt::I4S<3>() << std::endl;
BOOST_CHECK_NO_THROW(voigt::I2<2>());
}
BOOST_AUTO_TEST_SUITE_END()
} // muSpectre

Event Timeline