Skip to content
Snippets Groups Projects
argyriselementtest.cc 515 B
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:

#include "config.h"

#include <dune/localfunctions/argyris.hh>
#include <dune/localfunctions/test/c1_test-localfe.hh>

using namespace Dune;

int main(int argc, char **argv)
{
  bool success = true; // captured by Macros
  ArgyrisLocalFiniteElement<double, double> LFE_1d;
  // FE, DisableSubTests, max order for differentiabilitytest (<=2)
  TEST_FE3(LFE_1d, DisableVirtualInterface, 2);
  return success ? 0 : 1;
}