From 65db9759574cefec501ecd6a05b4e9476e755e44 Mon Sep 17 00:00:00 2001 From: "jeremy.bleyer" Date: Mon, 24 Feb 2020 10:54:11 +0100 Subject: [PATCH] Adds setup.py and operational wrapper --- README.md | 1 + demos/logarithmic_strain_plasticity.py | 13 +- demos/small_strain_vonMises_plasticity.py | 15 +- .../IsotropicLinearHardeningPlasticity.hxx | 20 +- ...LinearHardeningPlasticityBehaviourData.hxx | 9 +- ...nearHardeningPlasticityIntegrationData.hxx | 12 +- .../Material/LogarithmicStrainPlasticity.hxx | 26 +- ...garithmicStrainPlasticityBehaviourData.hxx | 11 +- ...rithmicStrainPlasticityIntegrationData.hxx | 12 +- ...ropicLinearHardeningPlasticity-generic.cxx | 7 +- ...otropicLinearHardeningPlasticity-generic.d | 589 +++++++++-------- .../IsotropicLinearHardeningPlasticity.cxx | 2 +- .../src/IsotropicLinearHardeningPlasticity.d | 492 +++++++------- .../LogarithmicStrainPlasticity-generic.cxx | 13 +- .../src/LogarithmicStrainPlasticity-generic.d | 601 +++++++++--------- materials/src/LogarithmicStrainPlasticity.cxx | 2 +- materials/src/LogarithmicStrainPlasticity.d | 496 +++++++-------- materials/src/Makefile.mfront | 4 +- materials/src/targets.lst | 28 +- mfront_wrapper/__init__.py | 15 + mfront_wrapper/mfront_wrapper.py | 92 --- mfront_wrapper/nonlinear_material.py | 33 + mfront_wrapper/nonlinear_problem.py | 179 ++++++ mfront_wrapper/utils.py | 94 +++ setup.py | 17 + 25 files changed, 1496 insertions(+), 1287 deletions(-) create mode 100644 README.md create mode 100644 mfront_wrapper/__init__.py create mode 100644 mfront_wrapper/nonlinear_material.py create mode 100644 mfront_wrapper/nonlinear_problem.py create mode 100644 mfront_wrapper/utils.py create mode 100644 setup.py diff --git a/README.md b/README.md new file mode 100644 index 0000000..753099e --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +A Python package for wrapping the usage of MFront in FEniCS diff --git a/demos/logarithmic_strain_plasticity.py b/demos/logarithmic_strain_plasticity.py index a5f1a0f..be13c13 100644 --- a/demos/logarithmic_strain_plasticity.py +++ b/demos/logarithmic_strain_plasticity.py @@ -1,13 +1,14 @@ from dolfin import * import mfront_wrapper as mf import numpy as np +import ufl length, width , height = 1., 40e-3, 100e-3 nb_elt_p, nb_elt_l = 10, 30 mesh = BoxMesh(Point(0, -width/2, -height/2.), Point(length, width/2, height/2.), nb_elt_l, 2, nb_elt_p) V = VectorFunctionSpace(mesh, "CG", 2) -u = Function(V) +u = Function(V, name="Displacement") def left(x, on_boundary): return near(x[0], 0) and on_boundary @@ -26,17 +27,23 @@ bcv = DirichletBC(V.sub(0), Constant(1.), left) bcv.apply(v.vector()) Vpost = FunctionSpace(mesh, "CG", 1) -file_results = XDMFFile("beam_GL_plasticity.xdmf") +file_results = XDMFFile("results/beam_GL_plasticity.xdmf") file_results.parameters["flush_output"] = True file_results.parameters["functions_share_mesh"] = True selfweight = Expression(("0", "0", "-t*qmax"), t=0., qmax = 50e6, degree=0) -material = mf.NonlinearMaterial('src/libBehaviour.so', "LogarithmicStrainPlasticity") +material = mf.MFrontNonlinearMaterial('../materials/src/libBehaviour.so', + "LogarithmicStrainPlasticity") problem = mf.MFrontNonlinearProblem(u, material) problem.set_loading(dot(selfweight, u)*dx) problem.bc = bc +p = problem.get_state_variable(name="EquivalentPlasticStrain") +assert (ufl.shape(p) == ()) +epsel = problem.get_state_variable(name="ElasticStrain") +print(ufl.shape(epsel)) + prm = problem.solver.parameters prm["absolute_tolerance"] = 1e-6 prm["relative_tolerance"] = 1e-6 diff --git a/demos/small_strain_vonMises_plasticity.py b/demos/small_strain_vonMises_plasticity.py index 6036673..fed0e92 100644 --- a/demos/small_strain_vonMises_plasticity.py +++ b/demos/small_strain_vonMises_plasticity.py @@ -1,6 +1,7 @@ from dolfin import * import mfront_wrapper as mf import numpy as np +import ufl hypothesis = "axisymmetric" # axisymmetric @@ -37,16 +38,18 @@ mat_prop = {"YoungModulus": E, "PoissonRatio": nu, "HardeningSlope": H, "YieldStrength": sig0} -material = mf.NonlinearMaterial('materials/src/libBehaviour.so', 'IsotropicLinearHardeningPlasticity', - hypothesis=hypothesis, - material_properties=mat_prop) +material = mf.MFrontNonlinearMaterial('../materials/src/libBehaviour.so', + 'IsotropicLinearHardeningPlasticity', + hypothesis=hypothesis, + material_properties=mat_prop) problem = mf.MFrontNonlinearProblem(u, material, quadrature_degree=4) problem.set_loading(loading*dot(n, u)*measure*ds(4)) problem.bc = bc -p = problem.register_state_variable(name="EquivalentPlasticStrain") -epsel = problem.register_state_variable(name="ElasticStrain", shape=4) -print(problem.state_variables) +p = problem.get_state_variable(name="EquivalentPlasticStrain") +assert (ufl.shape(p) == ()) +epsel = problem.get_state_variable(name="ElasticStrain") +assert (ufl.shape(epsel)==(4, )) file_results = XDMFFile("results/plasticity_results.xdmf") file_results.parameters["flush_output"] = True diff --git a/materials/include/TFEL/Material/IsotropicLinearHardeningPlasticity.hxx b/materials/include/TFEL/Material/IsotropicLinearHardeningPlasticity.hxx index 4b0aa38..33ebeb5 100644 --- a/materials/include/TFEL/Material/IsotropicLinearHardeningPlasticity.hxx +++ b/materials/include/TFEL/Material/IsotropicLinearHardeningPlasticity.hxx @@ -1,7 +1,7 @@ /*! * \file TFEL/Material/IsotropicLinearHardeningPlasticity.hxx * \brief this file implements the IsotropicLinearHardeningPlasticity Behaviour. -* File generated by tfel version 3.3.0-dev +* File generated by tfel version 3.3.0 * \author Thomas Helfer * \date 14 / 10 / 2016 */ @@ -132,6 +132,7 @@ using temperature = typename Types::temperature; using thermalexpansion = typename Types::thermalexpansion; using thermalconductivity = typename Types::thermalconductivity; using massdensity = typename Types::massdensity; +using energydensity = typename Types::energydensity; using TVector = typename Types::TVector; using Stensor = typename Types::Stensor; using Stensor4 = typename Types::Stensor4; @@ -448,23 +449,20 @@ template std::ostream& operator <<(std::ostream& os,const IsotropicLinearHardeningPlasticity& b) { -using namespace std; -os << "eto : " << b.eto << '\n'; -os << "deto : " << b.deto << '\n'; -os << "sig : " << b.sig << '\n'; -os << "dt : " << b.dt << endl; -os << "T : " << b.T << endl; -os << "dT : " << b.dT << endl; +os << "εᵗᵒ : " << b.eto << '\n'; +os << "Δεᵗᵒ : " << b.deto << '\n'; +os << "σ : " << b.sig << '\n'; +os << "Δt : " << b.dt << '\n'; os << "young : " << b.young << '\n'; os << "nu : " << b.nu << '\n'; os << "H : " << b.H << '\n'; os << "s0 : " << b.s0 << '\n'; os << "eel : " << b.eel << '\n'; -os << "deel : " << b.deel << '\n'; +os << "Δeel : " << b.deel << '\n'; os << "p : " << b.p << '\n'; -os << "dp : " << b.dp << '\n'; +os << "Δp : " << b.dp << '\n'; os << "T : " << b.T << '\n'; -os << "dT : " << b.dT << '\n'; +os << "ΔT : " << b.dT << '\n'; os << "minimal_time_step_scaling_factor : " << b.minimal_time_step_scaling_factor << '\n'; os << "maximal_time_step_scaling_factor : " << b.maximal_time_step_scaling_factor << '\n'; return os; diff --git a/materials/include/TFEL/Material/IsotropicLinearHardeningPlasticityBehaviourData.hxx b/materials/include/TFEL/Material/IsotropicLinearHardeningPlasticityBehaviourData.hxx index 6fe931f..71c0671 100644 --- a/materials/include/TFEL/Material/IsotropicLinearHardeningPlasticityBehaviourData.hxx +++ b/materials/include/TFEL/Material/IsotropicLinearHardeningPlasticityBehaviourData.hxx @@ -1,7 +1,7 @@ /*! * \file TFEL/Material/IsotropicLinearHardeningPlasticityBehaviourData.hxx * \brief this file implements the IsotropicLinearHardeningPlasticityBehaviourData class. -* File generated by tfel version 3.3.0-dev +* File generated by tfel version 3.3.0 * \author Thomas Helfer * \date 14 / 10 / 2016 */ @@ -85,6 +85,7 @@ using temperature = typename Types::temperature; using thermalexpansion = typename Types::thermalexpansion; using thermalconductivity = typename Types::thermalconductivity; using massdensity = typename Types::massdensity; +using energydensity = typename Types::energydensity; using TVector = typename Types::TVector; using Stensor = typename Types::Stensor; using Stensor4 = typename Types::Stensor4; @@ -199,10 +200,8 @@ template std::ostream& operator <<(std::ostream& os,const IsotropicLinearHardeningPlasticityBehaviourData& b) { -using namespace std; -os << "eto : " << b.eto << '\n'; -os << "sig : " << b.sig << '\n'; -os << "T : " << b.T << endl; +os << "εᵗᵒ : " << b.eto << '\n'; +os << "σ : " << b.sig << '\n'; os << "young : " << b.young << '\n'; os << "nu : " << b.nu << '\n'; os << "H : " << b.H << '\n'; diff --git a/materials/include/TFEL/Material/IsotropicLinearHardeningPlasticityIntegrationData.hxx b/materials/include/TFEL/Material/IsotropicLinearHardeningPlasticityIntegrationData.hxx index 447f612..0dee556 100644 --- a/materials/include/TFEL/Material/IsotropicLinearHardeningPlasticityIntegrationData.hxx +++ b/materials/include/TFEL/Material/IsotropicLinearHardeningPlasticityIntegrationData.hxx @@ -1,7 +1,7 @@ /*! * \file TFEL/Material/IsotropicLinearHardeningPlasticityIntegrationData.hxx * \brief this file implements the IsotropicLinearHardeningPlasticityIntegrationData class. -* File generated by tfel version 3.3.0-dev +* File generated by tfel version 3.3.0 * \author Thomas Helfer * \date 14 / 10 / 2016 */ @@ -73,6 +73,7 @@ using temperature = typename Types::temperature; using thermalexpansion = typename Types::thermalexpansion; using thermalconductivity = typename Types::thermalconductivity; using massdensity = typename Types::massdensity; +using energydensity = typename Types::energydensity; using TVector = typename Types::TVector; using Stensor = typename Types::Stensor; using Stensor4 = typename Types::Stensor4; @@ -168,11 +169,10 @@ template std::ostream& operator <<(std::ostream& os,const IsotropicLinearHardeningPlasticityIntegrationData& b) { -using namespace std; -os << "deto : " << b.deto << '\n'; -os << "dt : " << b.dt << endl; -os << "dT : " << b.dT << endl; -os << "dT : " << b.dT << '\n'; +os << "Δεᵗᵒ : " << b.deto << '\n'; +os << "σ : " << b.sig << '\n'; +os << "Δt : " << b.dt << '\n'; +os << "ΔT : " << b.dT << '\n'; return os; } diff --git a/materials/include/TFEL/Material/LogarithmicStrainPlasticity.hxx b/materials/include/TFEL/Material/LogarithmicStrainPlasticity.hxx index 7062554..5ce2b05 100644 --- a/materials/include/TFEL/Material/LogarithmicStrainPlasticity.hxx +++ b/materials/include/TFEL/Material/LogarithmicStrainPlasticity.hxx @@ -1,7 +1,7 @@ /*! * \file TFEL/Material/LogarithmicStrainPlasticity.hxx * \brief this file implements the LogarithmicStrainPlasticity Behaviour. -* File generated by tfel version 3.3.0-dev +* File generated by tfel version 3.3.0 * \author Helfer Thomas * \date 5 / 12 / 13 */ @@ -142,6 +142,7 @@ using temperature = typename Types::temperature; using thermalexpansion = typename Types::thermalexpansion; using thermalconductivity = typename Types::thermalconductivity; using massdensity = typename Types::massdensity; +using energydensity = typename Types::energydensity; using TVector = typename Types::TVector; using Stensor = typename Types::Stensor; using Stensor4 = typename Types::Stensor4; @@ -556,19 +557,16 @@ template std::ostream& operator <<(std::ostream& os,const LogarithmicStrainPlasticity& b) { -using namespace std; -os << "eto : " << b.eto << '\n'; -os << "deto : " << b.deto << '\n'; -os << "sig : " << b.sig << '\n'; -os << "dt : " << b.dt << endl; -os << "T : " << b.T << endl; -os << "dT : " << b.dT << endl; -os << "eel : " << b.eel << '\n'; -os << "deel : " << b.deel << '\n'; +os << "εᵗᵒ : " << b.eto << '\n'; +os << "Δεᵗᵒ : " << b.deto << '\n'; +os << "σ : " << b.sig << '\n'; +os << "Δt : " << b.dt << '\n'; +os << "εᵉˡ : " << b.eel << '\n'; +os << "Δεᵉˡ : " << b.deel << '\n'; os << "p : " << b.p << '\n'; -os << "dp : " << b.dp << '\n'; +os << "Δp : " << b.dp << '\n'; os << "T : " << b.T << '\n'; -os << "dT : " << b.dT << '\n'; +os << "ΔT : " << b.dT << '\n'; os << "T_ : " << b.T_ << '\n'; os << "se : " << b.se << '\n'; os << "n : " << b.n << '\n'; @@ -578,8 +576,8 @@ os << "s0 : " << b.s0 << '\n'; os << "Et : " << b.Et << '\n'; os << "minimal_time_step_scaling_factor : " << b.minimal_time_step_scaling_factor << '\n'; os << "maximal_time_step_scaling_factor : " << b.maximal_time_step_scaling_factor << '\n'; -os << "theta : " << b.theta << '\n'; -os << "epsilon : " << b.epsilon << '\n'; +os << "θ : " << b.theta << '\n'; +os << "ε : " << b.epsilon << '\n'; os << "iterMax : " << b.iterMax << '\n'; return os; } diff --git a/materials/include/TFEL/Material/LogarithmicStrainPlasticityBehaviourData.hxx b/materials/include/TFEL/Material/LogarithmicStrainPlasticityBehaviourData.hxx index 7df0472..118b970 100644 --- a/materials/include/TFEL/Material/LogarithmicStrainPlasticityBehaviourData.hxx +++ b/materials/include/TFEL/Material/LogarithmicStrainPlasticityBehaviourData.hxx @@ -1,7 +1,7 @@ /*! * \file TFEL/Material/LogarithmicStrainPlasticityBehaviourData.hxx * \brief this file implements the LogarithmicStrainPlasticityBehaviourData class. -* File generated by tfel version 3.3.0-dev +* File generated by tfel version 3.3.0 * \author Helfer Thomas * \date 5 / 12 / 13 */ @@ -85,6 +85,7 @@ using temperature = typename Types::temperature; using thermalexpansion = typename Types::thermalexpansion; using thermalconductivity = typename Types::thermalconductivity; using massdensity = typename Types::massdensity; +using energydensity = typename Types::energydensity; using TVector = typename Types::TVector; using Stensor = typename Types::Stensor; using Stensor4 = typename Types::Stensor4; @@ -177,11 +178,9 @@ template std::ostream& operator <<(std::ostream& os,const LogarithmicStrainPlasticityBehaviourData& b) { -using namespace std; -os << "eto : " << b.eto << '\n'; -os << "sig : " << b.sig << '\n'; -os << "T : " << b.T << endl; -os << "eel : " << b.eel << '\n'; +os << "εᵗᵒ : " << b.eto << '\n'; +os << "σ : " << b.sig << '\n'; +os << "εᵉˡ : " << b.eel << '\n'; os << "p : " << b.p << '\n'; os << "T : " << b.T << '\n'; return os; diff --git a/materials/include/TFEL/Material/LogarithmicStrainPlasticityIntegrationData.hxx b/materials/include/TFEL/Material/LogarithmicStrainPlasticityIntegrationData.hxx index bbbfb8a..f8eb899 100644 --- a/materials/include/TFEL/Material/LogarithmicStrainPlasticityIntegrationData.hxx +++ b/materials/include/TFEL/Material/LogarithmicStrainPlasticityIntegrationData.hxx @@ -1,7 +1,7 @@ /*! * \file TFEL/Material/LogarithmicStrainPlasticityIntegrationData.hxx * \brief this file implements the LogarithmicStrainPlasticityIntegrationData class. -* File generated by tfel version 3.3.0-dev +* File generated by tfel version 3.3.0 * \author Helfer Thomas * \date 5 / 12 / 13 */ @@ -73,6 +73,7 @@ using temperature = typename Types::temperature; using thermalexpansion = typename Types::thermalexpansion; using thermalconductivity = typename Types::thermalconductivity; using massdensity = typename Types::massdensity; +using energydensity = typename Types::energydensity; using TVector = typename Types::TVector; using Stensor = typename Types::Stensor; using Stensor4 = typename Types::Stensor4; @@ -168,11 +169,10 @@ template std::ostream& operator <<(std::ostream& os,const LogarithmicStrainPlasticityIntegrationData& b) { -using namespace std; -os << "deto : " << b.deto << '\n'; -os << "dt : " << b.dt << endl; -os << "dT : " << b.dT << endl; -os << "dT : " << b.dT << '\n'; +os << "Δεᵗᵒ : " << b.deto << '\n'; +os << "σ : " << b.sig << '\n'; +os << "Δt : " << b.dt << '\n'; +os << "ΔT : " << b.dT << '\n'; return os; } diff --git a/materials/src/IsotropicLinearHardeningPlasticity-generic.cxx b/materials/src/IsotropicLinearHardeningPlasticity-generic.cxx index dcde6cb..0c21657 100644 --- a/materials/src/IsotropicLinearHardeningPlasticity-generic.cxx +++ b/materials/src/IsotropicLinearHardeningPlasticity-generic.cxx @@ -38,11 +38,14 @@ return policy; extern "C"{ #endif /* __cplusplus */ +MFRONT_SHAREDOBJ const char* +IsotropicLinearHardeningPlasticity_build_id = ""; + MFRONT_SHAREDOBJ const char* IsotropicLinearHardeningPlasticity_mfront_ept = "IsotropicLinearHardeningPlasticity"; MFRONT_SHAREDOBJ const char* -IsotropicLinearHardeningPlasticity_tfel_version = "3.3.0-dev"; +IsotropicLinearHardeningPlasticity_tfel_version = "3.3.0"; MFRONT_SHAREDOBJ unsigned short IsotropicLinearHardeningPlasticity_mfront_mkt = 1u; @@ -106,7 +109,7 @@ MFRONT_SHAREDOBJ int IsotropicLinearHardeningPlasticity_ParametersTypes [] = {0, MFRONT_SHAREDOBJ double IsotropicLinearHardeningPlasticity_minimal_time_step_scaling_factor_ParameterDefaultValue = 0.1; -MFRONT_SHAREDOBJ double IsotropicLinearHardeningPlasticity_maximal_time_step_scaling_factor_ParameterDefaultValue = 1.79769e+308; +MFRONT_SHAREDOBJ double IsotropicLinearHardeningPlasticity_maximal_time_step_scaling_factor_ParameterDefaultValue = 1.7976931348623e+308; MFRONT_SHAREDOBJ unsigned short IsotropicLinearHardeningPlasticity_requiresStiffnessTensor = 0; MFRONT_SHAREDOBJ unsigned short IsotropicLinearHardeningPlasticity_requiresThermalExpansionCoefficientTensor = 0; diff --git a/materials/src/IsotropicLinearHardeningPlasticity-generic.d b/materials/src/IsotropicLinearHardeningPlasticity-generic.d index 52346c7..45218d1 100644 --- a/materials/src/IsotropicLinearHardeningPlasticity-generic.d +++ b/materials/src/IsotropicLinearHardeningPlasticity-generic.d @@ -137,7 +137,7 @@ IsotropicLinearHardeningPlasticity-generic.o IsotropicLinearHardeningPlasticity- /usr/include/c++/8/bits/basic_ios.tcc \ /usr/include/c++/8/bits/ostream.tcc /usr/include/c++/8/istream \ /usr/include/c++/8/bits/istream.tcc \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/OutOfBoundsPolicy.hxx \ + /usr/local/include/TFEL/Material/OutOfBoundsPolicy.hxx \ ../include/TFEL/Material/IsotropicLinearHardeningPlasticity.hxx \ /usr/include/c++/8/limits /usr/include/c++/8/algorithm \ /usr/include/c++/8/utility /usr/include/c++/8/bits/stl_relops.h \ @@ -146,44 +146,42 @@ IsotropicLinearHardeningPlasticity-generic.o IsotropicLinearHardeningPlasticity- /usr/include/c++/8/bits/stl_heap.h /usr/include/c++/8/bits/stl_tempbuf.h \ /usr/include/c++/8/bits/stl_construct.h \ /usr/include/c++/8/bits/uniform_int_dist.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Raise.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/TFELConfig.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/TFEL_MATH_Config.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Raise.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/PhysicalConstants.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/TFELTypes.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/qt.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/tvector.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/tmatrix.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/BaseType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/Complex.hxx \ + /usr/local/include/TFEL/Raise.hxx \ + /usr/local/include/TFEL/Config/TFELConfig.hxx \ + /usr/local/include/TFEL/Config/TFEL_MATH_Config.hxx \ + /usr/local/include/TFEL/Raise.ixx \ + /usr/local/include/TFEL/PhysicalConstants.hxx \ + /usr/local/include/TFEL/Config/TFELTypes.hxx \ + /usr/local/include/TFEL/Math/Forward/qt.hxx \ + /usr/local/include/TFEL/Math/Forward/tvector.hxx \ + /usr/local/include/TFEL/Math/Forward/tmatrix.hxx \ + /usr/local/include/TFEL/TypeTraits/BaseType.hxx \ + /usr/local/include/TFEL/Math/Forward/Complex.hxx \ /usr/include/c++/8/ciso646 \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/tensor.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/stensor.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/t2tost2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/st2tost2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorSizeToDime.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorSizeToDime.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/TFELTypesInternals.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/PositionType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/tvector.hxx \ - /usr/include/c++/8/cstddef /usr/include/c++/8/iterator \ - /usr/include/c++/8/bits/stream_iterator.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/StaticAssert.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Macros.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsAssignableTo.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/Promote.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/Promote/Promote.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/RealPartType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/InvalidType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsSafelyReinterpretCastableTo.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/copy.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsRandomAccessIterator.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/fsarray.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/fsarray.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/Abs.hxx \ - /usr/include/c++/8/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/local/include/TFEL/Math/Forward/tensor.hxx \ + /usr/local/include/TFEL/Math/Forward/stensor.hxx \ + /usr/local/include/TFEL/Math/Forward/t2tost2.hxx \ + /usr/local/include/TFEL/Math/Forward/st2tost2.hxx \ + /usr/local/include/TFEL/Math/Stensor/StensorSizeToDime.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorSizeToDime.hxx \ + /usr/local/include/TFEL/Config/Internals/TFELTypesInternals.hxx \ + /usr/local/include/TFEL/Config/Internals/PositionType.hxx \ + /usr/local/include/TFEL/Math/tvector.hxx /usr/include/c++/8/cstddef \ + /usr/include/c++/8/iterator /usr/include/c++/8/bits/stream_iterator.h \ + /usr/local/include/TFEL/Metaprogramming/StaticAssert.hxx \ + /usr/local/include/TFEL/Macros.hxx \ + /usr/local/include/TFEL/TypeTraits/IsAssignableTo.hxx \ + /usr/local/include/TFEL/TypeTraits/Promote.hxx \ + /usr/local/include/TFEL/TypeTraits/Promote/Promote.ixx \ + /usr/local/include/TFEL/TypeTraits/RealPartType.hxx \ + /usr/local/include/TFEL/Metaprogramming/InvalidType.hxx \ + /usr/local/include/TFEL/TypeTraits/IsSafelyReinterpretCastableTo.hxx \ + /usr/local/include/TFEL/FSAlgorithm/copy.hxx \ + /usr/local/include/TFEL/TypeTraits/IsRandomAccessIterator.hxx \ + /usr/local/include/TFEL/Math/fsarray.hxx \ + /usr/local/include/TFEL/Math/General/fsarray.ixx \ + /usr/local/include/TFEL/Math/General/Abs.hxx /usr/include/c++/8/cmath \ + /usr/include/math.h /usr/include/x86_64-linux-gnu/bits/math-vector.h \ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ @@ -197,275 +195,266 @@ IsotropicLinearHardeningPlasticity-generic.o IsotropicLinearHardeningPlasticity- /usr/include/c++/8/array /usr/include/c++/8/bits/uses_allocator.h \ /usr/include/c++/8/bits/invoke.h /usr/include/c++/8/bits/refwrap.h \ /usr/include/c++/8/bits/std_function.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/AbsType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsFundamentalNumericType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/Abs.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/BasicOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsScalar.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsComplex.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsUnaryOperator.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ComputeBinaryResult.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsInvalid.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ComputeObjectTag.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ComputeObjectTag.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ComputeUnaryResult.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/UnaryResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/EmptyRunTimeProperties.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ConceptRebind.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/VectorConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorConcept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/Implements.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ExpressionTemplates/Expr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/ResultOf.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/IsConstCallable.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ExpressionTemplates/StandardOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorVectorDotProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/RunTimeCheck.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/MathException.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Exception/TFELException.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorConceptOperations.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/TinyVectorFromTinyVectorView.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorUtilities.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/tvector.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/FSAlgorithm.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/loop.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/fill.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/equal.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/transform.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/for_each.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/swap_ranges.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/generate.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/min_element.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/max_element.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/accumulate.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/inner_product.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/iota.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/DotProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/tvectorResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/Unit.hxx \ - /usr/include/c++/8/ratio \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/Unit.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/SpatialGradType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/InvJacobianType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/tmatrix.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/MatrixConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/MatrixConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/MatrixConcept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/MatrixConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/power.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/power.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_row_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_row_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_row_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_row_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_column_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_column_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_column_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_column_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_submatrix_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_submatrix_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_submatrix_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_submatrix_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/AbsCompare.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/MatrixUtilities.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrixResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/TVectorTMatrixExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ObjectObjectRandomAccessConstIterator.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/TMatrixTVectorExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/JacobianType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/TemperatureGradientType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/HeatFluxVectorType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/ThermalConductivityMatrixType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsReal.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/IEEE754.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/IEEE754.ixx \ + /usr/local/include/TFEL/TypeTraits/AbsType.hxx \ + /usr/local/include/TFEL/TypeTraits/IsFundamentalNumericType.hxx \ + /usr/local/include/TFEL/Math/General/Abs.ixx \ + /usr/local/include/TFEL/Math/General/BasicOperations.hxx \ + /usr/local/include/TFEL/TypeTraits/IsScalar.hxx \ + /usr/local/include/TFEL/TypeTraits/IsComplex.hxx \ + /usr/local/include/TFEL/TypeTraits/IsUnaryOperator.hxx \ + /usr/local/include/TFEL/Math/General/ComputeBinaryResult.hxx \ + /usr/local/include/TFEL/Math/General/ResultType.hxx \ + /usr/local/include/TFEL/TypeTraits/IsInvalid.hxx \ + /usr/local/include/TFEL/Math/General/ComputeObjectTag.hxx \ + /usr/local/include/TFEL/Math/General/ComputeObjectTag.ixx \ + /usr/local/include/TFEL/Math/General/ComputeUnaryResult.hxx \ + /usr/local/include/TFEL/Math/General/UnaryResultType.hxx \ + /usr/local/include/TFEL/Math/General/EmptyRunTimeProperties.hxx \ + /usr/local/include/TFEL/Math/Vector/VectorConcept.hxx \ + /usr/local/include/TFEL/Math/General/ConceptRebind.hxx \ + /usr/local/include/TFEL/Math/Forward/VectorConcept.hxx \ + /usr/local/include/TFEL/Math/Vector/VectorConcept.ixx \ + /usr/local/include/TFEL/Math/Vector/VectorConceptOperations.hxx \ + /usr/local/include/TFEL/Metaprogramming/Implements.hxx \ + /usr/local/include/TFEL/Math/ExpressionTemplates/Expr.hxx \ + /usr/local/include/TFEL/Metaprogramming/ResultOf.hxx \ + /usr/local/include/TFEL/Metaprogramming/IsConstCallable.hxx \ + /usr/local/include/TFEL/Math/ExpressionTemplates/StandardOperations.hxx \ + /usr/local/include/TFEL/Math/Vector/VectorVectorDotProduct.hxx \ + /usr/local/include/TFEL/Math/General/RunTimeCheck.hxx \ + /usr/local/include/TFEL/Math/MathException.hxx \ + /usr/local/include/TFEL/Exception/TFELException.hxx \ + /usr/local/include/TFEL/Math/Vector/VectorConceptOperations.ixx \ + /usr/local/include/TFEL/Math/Vector/TinyVectorFromTinyVectorView.hxx \ + /usr/local/include/TFEL/Math/Vector/VectorUtilities.hxx \ + /usr/local/include/TFEL/Math/Vector/tvector.ixx \ + /usr/local/include/TFEL/FSAlgorithm/FSAlgorithm.hxx \ + /usr/local/include/TFEL/FSAlgorithm/loop.hxx \ + /usr/local/include/TFEL/FSAlgorithm/fill.hxx \ + /usr/local/include/TFEL/FSAlgorithm/equal.hxx \ + /usr/local/include/TFEL/FSAlgorithm/transform.hxx \ + /usr/local/include/TFEL/FSAlgorithm/for_each.hxx \ + /usr/local/include/TFEL/FSAlgorithm/swap_ranges.hxx \ + /usr/local/include/TFEL/FSAlgorithm/generate.hxx \ + /usr/local/include/TFEL/FSAlgorithm/min_element.hxx \ + /usr/local/include/TFEL/FSAlgorithm/max_element.hxx \ + /usr/local/include/TFEL/FSAlgorithm/accumulate.hxx \ + /usr/local/include/TFEL/FSAlgorithm/inner_product.hxx \ + /usr/local/include/TFEL/FSAlgorithm/iota.hxx \ + /usr/local/include/TFEL/Math/General/DotProduct.hxx \ + /usr/local/include/TFEL/Math/Vector/tvectorResultType.hxx \ + /usr/local/include/TFEL/Math/Quantity/Unit.hxx /usr/include/c++/8/ratio \ + /usr/local/include/TFEL/Math/Quantity/Unit.ixx \ + /usr/local/include/TFEL/Config/Internals/SpatialGradType.hxx \ + /usr/local/include/TFEL/Config/Internals/InvJacobianType.hxx \ + /usr/local/include/TFEL/Math/tmatrix.hxx \ + /usr/local/include/TFEL/Math/Matrix/MatrixConcept.hxx \ + /usr/local/include/TFEL/Math/Forward/MatrixConcept.hxx \ + /usr/local/include/TFEL/Math/Matrix/MatrixConcept.ixx \ + /usr/local/include/TFEL/Math/Matrix/MatrixConceptOperations.hxx \ + /usr/local/include/TFEL/Math/power.hxx \ + /usr/local/include/TFEL/Math/power.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_row_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_row_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_row_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_row_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_column_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_column_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_column_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_column_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_submatrix_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_submatrix_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_submatrix_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_submatrix_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix.ixx \ + /usr/local/include/TFEL/Math/General/AbsCompare.hxx \ + /usr/local/include/TFEL/Math/Matrix/MatrixUtilities.hxx \ + /usr/local/include/TFEL/Math/Matrix/MatrixUtilities.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrixResultType.hxx \ + /usr/local/include/TFEL/Math/Matrix/TVectorTMatrixExpr.hxx \ + /usr/local/include/TFEL/Math/General/ObjectObjectRandomAccessConstIterator.hxx \ + /usr/local/include/TFEL/Math/Matrix/TMatrixTVectorExpr.hxx \ + /usr/local/include/TFEL/Config/Internals/JacobianType.hxx \ + /usr/local/include/TFEL/Config/Internals/TemperatureGradientType.hxx \ + /usr/local/include/TFEL/Config/Internals/HeatFluxVectorType.hxx \ + /usr/local/include/TFEL/Config/Internals/ThermalConductivityMatrixType.hxx \ + /usr/local/include/TFEL/TypeTraits/IsReal.hxx \ + /usr/local/include/TFEL/Math/General/IEEE754.hxx \ + /usr/local/include/TFEL/Math/General/IEEE754.ixx \ /usr/include/c++/8/cfloat \ /usr/lib/gcc/x86_64-linux-gnu/8/include/float.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/MaterialException.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/MechanicalBehaviour.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/ModellingHypothesis.hxx \ + /usr/local/include/TFEL/Material/MaterialException.hxx \ + /usr/local/include/TFEL/Material/MechanicalBehaviour.hxx \ + /usr/local/include/TFEL/Material/ModellingHypothesis.hxx \ /usr/include/c++/8/vector /usr/include/c++/8/bits/stl_uninitialized.h \ /usr/include/c++/8/bits/stl_vector.h \ /usr/include/c++/8/bits/stl_bvector.h /usr/include/c++/8/bits/vector.tcc \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/FiniteStrainBehaviourTangentOperatorBase.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/MechanicalBehaviourTraits.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/BoundsCheck.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/qt.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/TypeList.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/TypeList.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/Forward/TypeList.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/IsSubClassOf.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/GenerateTypeList.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qtLimits.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qtSpecific.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qtSamples.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qt.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qtOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qtOperations.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/stensor.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2Concept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/TensorConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2Concept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2TransposeExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/ST2toST2Concept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2ConceptPushForward.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/MathConstants.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/EmptyClass.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ConstExprMathFunctions.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorConcept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorTransposeExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorConcept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/MatrixViewFromTensor.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorConceptOperations.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/stensor.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/SymmetricStensorProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/SymmetricStensorProduct.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorImport.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorExport.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorExport.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorChangeBasis.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorInvert.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorDeterminant.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/BuildStensorFromMatrix.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/BuildStensorFromVectorDiadicProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/BuildStensorFromVectorsSymmetricDiadicProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/BuildStensorFromEigenValuesAndVectors.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorEigenSolver.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/FSESSymmetricEigenSolver.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/FSESSymmetricEigenSolver.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevc3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevc3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/Utilities.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/Utilities.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevv3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevv3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/GteSymmetricEigenSolver.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/GteSymmetricEigenSolver.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorComputeEigenValues.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/CubicRoots.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorComputeEigenVectors.hxx \ + /usr/local/include/TFEL/Material/FiniteStrainBehaviourTangentOperatorBase.hxx \ + /usr/local/include/TFEL/Material/MechanicalBehaviourTraits.hxx \ + /usr/local/include/TFEL/Material/BoundsCheck.hxx \ + /usr/local/include/TFEL/Math/qt.hxx \ + /usr/local/include/TFEL/Metaprogramming/TypeList.hxx \ + /usr/local/include/TFEL/Metaprogramming/TypeList.ixx \ + /usr/local/include/TFEL/Metaprogramming/Forward/TypeList.hxx \ + /usr/local/include/TFEL/Metaprogramming/IsSubClassOf.hxx \ + /usr/local/include/TFEL/Metaprogramming/GenerateTypeList.hxx \ + /usr/local/include/TFEL/Math/Quantity/qtLimits.hxx \ + /usr/local/include/TFEL/Math/Quantity/qtSpecific.hxx \ + /usr/local/include/TFEL/Math/Quantity/qtSamples.hxx \ + /usr/local/include/TFEL/Math/Quantity/qt.ixx \ + /usr/local/include/TFEL/Math/Quantity/qtOperations.hxx \ + /usr/local/include/TFEL/Math/Quantity/qtOperations.ixx \ + /usr/local/include/TFEL/Math/stensor.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2Concept.hxx \ + /usr/local/include/TFEL/Math/Forward/TensorConcept.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2Concept.ixx \ + /usr/local/include/TFEL/Math/LU/LUDecomp.hxx \ + /usr/local/include/TFEL/Math/LU/LUException.hxx \ + /usr/local/include/TFEL/Math/LU/LUDecomp.ixx \ + /usr/local/include/TFEL/Math/LU/TinyPermutation.hxx \ + /usr/local/include/TFEL/Math/LU/TinyPermutation.ixx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2TransposeExpr.hxx \ + /usr/local/include/TFEL/Math/Forward/ST2toST2Concept.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2ConceptPushForward.ixx \ + /usr/local/include/TFEL/Math/General/MathConstants.hxx \ + /usr/local/include/TFEL/Metaprogramming/EmptyClass.hxx \ + /usr/local/include/TFEL/Math/General/ConstExprMathFunctions.hxx \ + /usr/local/include/TFEL/Math/Stensor/StensorConcept.hxx \ + /usr/local/include/TFEL/Math/Stensor/StensorConcept.ixx \ + /usr/local/include/TFEL/Math/Stensor/StensorConceptOperations.hxx \ + /usr/local/include/TFEL/Math/Stensor/StensorProduct.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorConcept.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorTransposeExpr.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorConcept.ixx \ + /usr/local/include/TFEL/Math/Tensor/MatrixViewFromTensor.hxx \ + /usr/local/include/TFEL/Math/Stensor/StensorConceptOperations.ixx \ + /usr/local/include/TFEL/Math/Stensor/stensor.ixx \ + /usr/local/include/TFEL/Math/Stensor/SymmetricStensorProduct.hxx \ + /usr/local/include/TFEL/Math/Stensor/SymmetricStensorProduct.ixx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorImport.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorExport.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorExport.ixx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorChangeBasis.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorInvert.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorDeterminant.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/BuildStensorFromMatrix.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/BuildStensorFromVectorDiadicProduct.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/BuildStensorFromVectorsSymmetricDiadicProduct.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/BuildStensorFromEigenValuesAndVectors.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorEigenSolver.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/FSESSymmetricEigenSolver.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/FSESSymmetricEigenSolver.ixx \ + /usr/local/include/FSES/syevc3.hxx /usr/local/include/FSES/syevc3.ixx \ + /usr/local/include/FSES/Utilities.hxx \ + /usr/local/include/FSES/Utilities.ixx /usr/local/include/FSES/syevv3.hxx \ + /usr/local/include/FSES/syevv3.ixx \ + /usr/local/include/TFEL/Math/Stensor/Internals/GteSymmetricEigenSolver.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/GteSymmetricEigenSolver.ixx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorComputeEigenValues.hxx \ + /usr/local/include/TFEL/Math/General/CubicRoots.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorComputeEigenVectors.hxx \ /usr/include/c++/8/cassert /usr/include/assert.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevj3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevj3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevq3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevq3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/sytrd3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/sytrd3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevd3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevd3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syev2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syev2.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/slvsec3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/slvsec3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevh3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevh3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/SortEigenValues.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/SortEigenVectors.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorComputeEigenValuesDerivatives.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorComputeEigenVectorsDerivatives.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorComputeIsotropicFunctionDerivative.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/stensorResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/DecompositionInPositiveAndNegativeParts.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/DecompositionInPositiveAndNegativeParts.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/IsotropicPlasticity.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/st2tost2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/T2toST2Concept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/T2toST2Concept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/T2toST2Concept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2ConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2StensorProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/StensorST2toST2ProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2ST2toST2ProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/StensorSquareDerivative.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/st2tost2.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/BaseCast.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/TinyMatrixInvert.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/TinyMatrixSolve.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/TinyPermutation.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/TinyPermutation.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/LUException.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/TinyMatrixSolve.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/LUDecomp.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/LUDecomp.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/TinyMatrixInvert.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ConvertT2toST2ToST2toST2Expr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/BuildFromRotationMatrix.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/StensorSymmetricProductDerivative.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/SymmetricStensorProductDerivative.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/SymmetricStensorProductDerivative.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ChangeBasis.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/st2tost2ResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/IsotropicPlasticity.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/Lame.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/Hosford1972YieldCriterion.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/Hosford1972YieldCriterion.ixx \ + /usr/local/include/FSES/syevj3.hxx /usr/local/include/FSES/syevj3.ixx \ + /usr/local/include/FSES/syevq3.hxx /usr/local/include/FSES/syevq3.ixx \ + /usr/local/include/FSES/sytrd3.hxx /usr/local/include/FSES/sytrd3.ixx \ + /usr/local/include/FSES/syevd3.hxx /usr/local/include/FSES/syevd3.ixx \ + /usr/local/include/FSES/syev2.hxx /usr/local/include/FSES/syev2.ixx \ + /usr/local/include/FSES/slvsec3.hxx /usr/local/include/FSES/slvsec3.ixx \ + /usr/local/include/FSES/syevh3.hxx /usr/local/include/FSES/syevh3.ixx \ + /usr/local/include/TFEL/Math/Stensor/Internals/SortEigenValues.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/SortEigenVectors.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorComputeEigenValuesDerivatives.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorComputeEigenVectorsDerivatives.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorComputeIsotropicFunctionDerivative.hxx \ + /usr/local/include/TFEL/Math/Stensor/stensorResultType.hxx \ + /usr/local/include/TFEL/Math/Stensor/DecompositionInPositiveAndNegativeParts.hxx \ + /usr/local/include/TFEL/Math/Stensor/DecompositionInPositiveAndNegativeParts.ixx \ + /usr/local/include/TFEL/Material/IsotropicPlasticity.hxx \ + /usr/local/include/TFEL/Math/st2tost2.hxx \ + /usr/local/include/TFEL/Math/T2toST2/T2toST2Concept.hxx \ + /usr/local/include/TFEL/Math/Forward/T2toST2Concept.hxx \ + /usr/local/include/TFEL/Math/T2toST2/T2toST2Concept.ixx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2ConceptOperations.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2StensorProductExpr.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/StensorST2toST2ProductExpr.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2ST2toST2ProductExpr.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/StensorSquareDerivative.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/st2tost2.ixx \ + /usr/local/include/TFEL/Math/General/BaseCast.hxx \ + /usr/local/include/TFEL/Math/TinyMatrixInvert.hxx \ + /usr/local/include/TFEL/Math/TinyMatrixSolve.hxx \ + /usr/local/include/TFEL/Math/LU/TinyMatrixSolve.ixx \ + /usr/local/include/TFEL/Math/Matrix/TinyMatrixInvert.ixx \ + /usr/local/include/TFEL/Math/ST2toST2/ConvertT2toST2ToST2toST2Expr.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/BuildFromRotationMatrix.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/StensorSymmetricProductDerivative.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/SymmetricStensorProductDerivative.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/SymmetricStensorProductDerivative.ixx \ + /usr/local/include/TFEL/Math/ST2toST2/ChangeBasis.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/st2tost2ResultType.hxx \ + /usr/local/include/TFEL/Material/IsotropicPlasticity.ixx \ + /usr/local/include/TFEL/Material/Lame.hxx \ + /usr/local/include/TFEL/Material/Hosford1972YieldCriterion.hxx \ + /usr/local/include/TFEL/Material/Hosford1972YieldCriterion.ixx \ ../include/TFEL/Material/IsotropicLinearHardeningPlasticityBehaviourData.hxx \ /usr/include/c++/8/sstream /usr/include/c++/8/bits/sstream.tcc \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorConceptIO.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrixIO.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2ConceptIO.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/State.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/Types.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/Types.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/State.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/BehaviourData.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/BehaviourData.h \ + /usr/local/include/TFEL/Math/Stensor/StensorConceptIO.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrixIO.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2ConceptIO.hxx \ + /usr/local/include/MFront/GenericBehaviour/State.hxx \ + /usr/local/include/MFront/GenericBehaviour/Types.hxx \ + /usr/local/include/MFront/GenericBehaviour/Types.h \ + /usr/local/include/MFront/GenericBehaviour/State.h \ + /usr/local/include/MFront/GenericBehaviour/BehaviourData.hxx \ + /usr/local/include/MFront/GenericBehaviour/BehaviourData.h \ ../include/TFEL/Material/IsotropicLinearHardeningPlasticityIntegrationData.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/Integrate.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/t2tot2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/tensor.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorViewFromStensor.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorConceptOperations.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/tensor.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorChangeBasis.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/tensorResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/t2tot2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/T2toT2Concept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/T2toT2Concept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/T2toT2Concept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/T2toT2ConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/T2toT2TensorProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/TensorT2toT2ProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/T2toT2T2toT2ProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/t2tot2.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/TensorProductLeftDerivativeExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/TensorProductRightDerivativeExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/BuildFromRotationMatrix.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/ChangeBasis.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/t2tot2ResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/t2tost2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/T2toST2ConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/HasRandomAccessConstIterator.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/StensorT2toST2ProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/T2toST2TensorProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/ST2toST2T2toST2ProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/T2toST2T2toT2ProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/t2tost2.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/LeftCauchyGreenTensorDerivativeExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/RightCauchyGreenTensorDerivativeExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/t2tost2ResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/FiniteStrainBehaviourTangentOperator.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Utilities/GenTypeBase.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Utilities/GenTypeCastError.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Utilities/GenTypeBase.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Utilities/GenTypeSpecialisation.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/FiniteStrainBehaviourTangentOperator.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ConvertSpatialModuliToKirchhoffJaumanRateModuli.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/ConvertToPK1Derivative.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/ConvertToPK1Derivative.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/ConvertFromPK1Derivative.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/ConvertFromPK1Derivative.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/LogarithmicStrainHandler.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/LogarithmicStrainHandler.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2View.hxx \ + /usr/local/include/MFront/GenericBehaviour/Integrate.hxx \ + /usr/local/include/TFEL/Math/t2tot2.hxx \ + /usr/local/include/TFEL/Math/tensor.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorConceptOperations.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorProduct.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorViewFromStensor.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorConceptOperations.ixx \ + /usr/local/include/TFEL/Math/Tensor/tensor.ixx \ + /usr/local/include/TFEL/Math/Tensor/TensorChangeBasis.hxx \ + /usr/local/include/TFEL/Math/Tensor/tensorResultType.hxx \ + /usr/local/include/TFEL/Math/Forward/t2tot2.hxx \ + /usr/local/include/TFEL/Math/T2toT2/T2toT2Concept.hxx \ + /usr/local/include/TFEL/Math/Forward/T2toT2Concept.hxx \ + /usr/local/include/TFEL/Math/T2toT2/T2toT2Concept.ixx \ + /usr/local/include/TFEL/Math/T2toT2/T2toT2ConceptOperations.hxx \ + /usr/local/include/TFEL/Math/T2toT2/T2toT2TensorProductExpr.hxx \ + /usr/local/include/TFEL/Math/T2toT2/TensorT2toT2ProductExpr.hxx \ + /usr/local/include/TFEL/Math/T2toT2/T2toT2T2toT2ProductExpr.hxx \ + /usr/local/include/TFEL/Math/T2toT2/t2tot2.ixx \ + /usr/local/include/TFEL/Math/T2toT2/TensorProductLeftDerivativeExpr.hxx \ + /usr/local/include/TFEL/Math/T2toT2/TensorProductRightDerivativeExpr.hxx \ + /usr/local/include/TFEL/Math/T2toT2/BuildFromRotationMatrix.hxx \ + /usr/local/include/TFEL/Math/T2toT2/ChangeBasis.hxx \ + /usr/local/include/TFEL/Math/T2toT2/t2tot2ResultType.hxx \ + /usr/local/include/TFEL/Math/t2tost2.hxx \ + /usr/local/include/TFEL/Math/T2toST2/T2toST2ConceptOperations.hxx \ + /usr/local/include/TFEL/Metaprogramming/HasRandomAccessConstIterator.hxx \ + /usr/local/include/TFEL/Math/T2toST2/StensorT2toST2ProductExpr.hxx \ + /usr/local/include/TFEL/Math/T2toST2/T2toST2TensorProductExpr.hxx \ + /usr/local/include/TFEL/Math/T2toST2/ST2toST2T2toST2ProductExpr.hxx \ + /usr/local/include/TFEL/Math/T2toST2/T2toST2T2toT2ProductExpr.hxx \ + /usr/local/include/TFEL/Math/T2toST2/t2tost2.ixx \ + /usr/local/include/TFEL/Math/T2toST2/LeftCauchyGreenTensorDerivativeExpr.hxx \ + /usr/local/include/TFEL/Math/T2toST2/RightCauchyGreenTensorDerivativeExpr.hxx \ + /usr/local/include/TFEL/Math/T2toST2/t2tost2ResultType.hxx \ + /usr/local/include/TFEL/Material/FiniteStrainBehaviourTangentOperator.hxx \ + /usr/local/include/TFEL/Utilities/GenTypeBase.hxx \ + /usr/local/include/TFEL/Utilities/GenTypeCastError.hxx \ + /usr/local/include/TFEL/Utilities/GenTypeBase.ixx \ + /usr/local/include/TFEL/Utilities/GenTypeSpecialisation.ixx \ + /usr/local/include/TFEL/Material/FiniteStrainBehaviourTangentOperator.ixx \ + /usr/local/include/TFEL/Math/ST2toST2/ConvertSpatialModuliToKirchhoffJaumanRateModuli.hxx \ + /usr/local/include/TFEL/Math/T2toT2/ConvertToPK1Derivative.hxx \ + /usr/local/include/TFEL/Math/T2toT2/ConvertToPK1Derivative.ixx \ + /usr/local/include/TFEL/Math/T2toT2/ConvertFromPK1Derivative.hxx \ + /usr/local/include/TFEL/Math/T2toT2/ConvertFromPK1Derivative.ixx \ + /usr/local/include/TFEL/Material/LogarithmicStrainHandler.hxx \ + /usr/local/include/TFEL/Material/LogarithmicStrainHandler.ixx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2View.hxx \ ../include/MFront/GenericBehaviour/IsotropicLinearHardeningPlasticity-generic.hxx diff --git a/materials/src/IsotropicLinearHardeningPlasticity.cxx b/materials/src/IsotropicLinearHardeningPlasticity.cxx index 3189091..7d6c31a 100644 --- a/materials/src/IsotropicLinearHardeningPlasticity.cxx +++ b/materials/src/IsotropicLinearHardeningPlasticity.cxx @@ -1,7 +1,7 @@ /*! * \file IsotropicLinearHardeningPlasticity.cxx * \brief this file implements the IsotropicLinearHardeningPlasticity Behaviour. -* File generated by tfel version 3.3.0-dev +* File generated by tfel version 3.3.0 * \author Thomas Helfer * \date 14 / 10 / 2016 */ diff --git a/materials/src/IsotropicLinearHardeningPlasticity.d b/materials/src/IsotropicLinearHardeningPlasticity.d index d44e316..eb4df70 100644 --- a/materials/src/IsotropicLinearHardeningPlasticity.d +++ b/materials/src/IsotropicLinearHardeningPlasticity.d @@ -144,12 +144,11 @@ IsotropicLinearHardeningPlasticity.o IsotropicLinearHardeningPlasticity.d : \ /usr/include/c++/8/bits/codecvt.h \ /usr/include/x86_64-linux-gnu/c++/8/bits/basic_file.h \ /usr/include/x86_64-linux-gnu/c++/8/bits/c++io.h \ - /usr/include/c++/8/bits/fstream.tcc \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Raise.hxx \ + /usr/include/c++/8/bits/fstream.tcc /usr/local/include/TFEL/Raise.hxx \ /usr/include/c++/8/utility /usr/include/c++/8/bits/stl_relops.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/TFELConfig.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/TFEL_MATH_Config.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Raise.ixx \ + /usr/local/include/TFEL/Config/TFELConfig.hxx \ + /usr/local/include/TFEL/Config/TFEL_MATH_Config.hxx \ + /usr/local/include/TFEL/Raise.ixx \ ../include/TFEL/Material/IsotropicLinearHardeningPlasticityBehaviourData.hxx \ /usr/include/c++/8/limits /usr/include/c++/8/iostream \ /usr/include/c++/8/algorithm /usr/include/c++/8/bits/stl_algo.h \ @@ -157,40 +156,38 @@ IsotropicLinearHardeningPlasticity.o IsotropicLinearHardeningPlasticity.d : \ /usr/include/c++/8/bits/stl_heap.h /usr/include/c++/8/bits/stl_tempbuf.h \ /usr/include/c++/8/bits/stl_construct.h \ /usr/include/c++/8/bits/uniform_int_dist.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/PhysicalConstants.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/TFELTypes.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/qt.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/tvector.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/tmatrix.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/BaseType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/Complex.hxx \ + /usr/local/include/TFEL/PhysicalConstants.hxx \ + /usr/local/include/TFEL/Config/TFELTypes.hxx \ + /usr/local/include/TFEL/Math/Forward/qt.hxx \ + /usr/local/include/TFEL/Math/Forward/tvector.hxx \ + /usr/local/include/TFEL/Math/Forward/tmatrix.hxx \ + /usr/local/include/TFEL/TypeTraits/BaseType.hxx \ + /usr/local/include/TFEL/Math/Forward/Complex.hxx \ /usr/include/c++/8/ciso646 \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/tensor.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/stensor.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/t2tost2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/st2tost2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorSizeToDime.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorSizeToDime.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/TFELTypesInternals.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/PositionType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/tvector.hxx \ - /usr/include/c++/8/cstddef /usr/include/c++/8/iterator \ - /usr/include/c++/8/bits/stream_iterator.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/StaticAssert.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Macros.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsAssignableTo.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/Promote.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/Promote/Promote.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/RealPartType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/InvalidType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsSafelyReinterpretCastableTo.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/copy.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsRandomAccessIterator.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/fsarray.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/fsarray.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/Abs.hxx \ - /usr/include/c++/8/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/local/include/TFEL/Math/Forward/tensor.hxx \ + /usr/local/include/TFEL/Math/Forward/stensor.hxx \ + /usr/local/include/TFEL/Math/Forward/t2tost2.hxx \ + /usr/local/include/TFEL/Math/Forward/st2tost2.hxx \ + /usr/local/include/TFEL/Math/Stensor/StensorSizeToDime.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorSizeToDime.hxx \ + /usr/local/include/TFEL/Config/Internals/TFELTypesInternals.hxx \ + /usr/local/include/TFEL/Config/Internals/PositionType.hxx \ + /usr/local/include/TFEL/Math/tvector.hxx /usr/include/c++/8/cstddef \ + /usr/include/c++/8/iterator /usr/include/c++/8/bits/stream_iterator.h \ + /usr/local/include/TFEL/Metaprogramming/StaticAssert.hxx \ + /usr/local/include/TFEL/Macros.hxx \ + /usr/local/include/TFEL/TypeTraits/IsAssignableTo.hxx \ + /usr/local/include/TFEL/TypeTraits/Promote.hxx \ + /usr/local/include/TFEL/TypeTraits/Promote/Promote.ixx \ + /usr/local/include/TFEL/TypeTraits/RealPartType.hxx \ + /usr/local/include/TFEL/Metaprogramming/InvalidType.hxx \ + /usr/local/include/TFEL/TypeTraits/IsSafelyReinterpretCastableTo.hxx \ + /usr/local/include/TFEL/FSAlgorithm/copy.hxx \ + /usr/local/include/TFEL/TypeTraits/IsRandomAccessIterator.hxx \ + /usr/local/include/TFEL/Math/fsarray.hxx \ + /usr/local/include/TFEL/Math/General/fsarray.ixx \ + /usr/local/include/TFEL/Math/General/Abs.hxx /usr/include/c++/8/cmath \ + /usr/include/math.h /usr/include/x86_64-linux-gnu/bits/math-vector.h \ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ @@ -204,225 +201,216 @@ IsotropicLinearHardeningPlasticity.o IsotropicLinearHardeningPlasticity.d : \ /usr/include/c++/8/array /usr/include/c++/8/bits/uses_allocator.h \ /usr/include/c++/8/bits/invoke.h /usr/include/c++/8/bits/refwrap.h \ /usr/include/c++/8/bits/std_function.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/AbsType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsFundamentalNumericType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/Abs.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/BasicOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsScalar.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsComplex.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsUnaryOperator.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ComputeBinaryResult.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsInvalid.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ComputeObjectTag.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ComputeObjectTag.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ComputeUnaryResult.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/UnaryResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/EmptyRunTimeProperties.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ConceptRebind.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/VectorConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorConcept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/Implements.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ExpressionTemplates/Expr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/ResultOf.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/IsConstCallable.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ExpressionTemplates/StandardOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorVectorDotProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/RunTimeCheck.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/MathException.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Exception/TFELException.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorConceptOperations.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/TinyVectorFromTinyVectorView.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorUtilities.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/tvector.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/FSAlgorithm.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/loop.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/fill.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/equal.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/transform.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/for_each.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/swap_ranges.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/generate.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/min_element.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/max_element.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/accumulate.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/inner_product.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/iota.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/DotProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/tvectorResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/Unit.hxx \ - /usr/include/c++/8/ratio \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/Unit.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/SpatialGradType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/InvJacobianType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/tmatrix.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/MatrixConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/MatrixConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/MatrixConcept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/MatrixConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/power.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/power.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_row_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_row_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_row_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_row_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_column_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_column_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_column_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_column_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_submatrix_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_submatrix_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_submatrix_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_submatrix_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/AbsCompare.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/MatrixUtilities.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrixResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/TVectorTMatrixExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ObjectObjectRandomAccessConstIterator.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/TMatrixTVectorExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/JacobianType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/TemperatureGradientType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/HeatFluxVectorType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/ThermalConductivityMatrixType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsReal.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/IEEE754.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/IEEE754.ixx \ + /usr/local/include/TFEL/TypeTraits/AbsType.hxx \ + /usr/local/include/TFEL/TypeTraits/IsFundamentalNumericType.hxx \ + /usr/local/include/TFEL/Math/General/Abs.ixx \ + /usr/local/include/TFEL/Math/General/BasicOperations.hxx \ + /usr/local/include/TFEL/TypeTraits/IsScalar.hxx \ + /usr/local/include/TFEL/TypeTraits/IsComplex.hxx \ + /usr/local/include/TFEL/TypeTraits/IsUnaryOperator.hxx \ + /usr/local/include/TFEL/Math/General/ComputeBinaryResult.hxx \ + /usr/local/include/TFEL/Math/General/ResultType.hxx \ + /usr/local/include/TFEL/TypeTraits/IsInvalid.hxx \ + /usr/local/include/TFEL/Math/General/ComputeObjectTag.hxx \ + /usr/local/include/TFEL/Math/General/ComputeObjectTag.ixx \ + /usr/local/include/TFEL/Math/General/ComputeUnaryResult.hxx \ + /usr/local/include/TFEL/Math/General/UnaryResultType.hxx \ + /usr/local/include/TFEL/Math/General/EmptyRunTimeProperties.hxx \ + /usr/local/include/TFEL/Math/Vector/VectorConcept.hxx \ + /usr/local/include/TFEL/Math/General/ConceptRebind.hxx \ + /usr/local/include/TFEL/Math/Forward/VectorConcept.hxx \ + /usr/local/include/TFEL/Math/Vector/VectorConcept.ixx \ + /usr/local/include/TFEL/Math/Vector/VectorConceptOperations.hxx \ + /usr/local/include/TFEL/Metaprogramming/Implements.hxx \ + /usr/local/include/TFEL/Math/ExpressionTemplates/Expr.hxx \ + /usr/local/include/TFEL/Metaprogramming/ResultOf.hxx \ + /usr/local/include/TFEL/Metaprogramming/IsConstCallable.hxx \ + /usr/local/include/TFEL/Math/ExpressionTemplates/StandardOperations.hxx \ + /usr/local/include/TFEL/Math/Vector/VectorVectorDotProduct.hxx \ + /usr/local/include/TFEL/Math/General/RunTimeCheck.hxx \ + /usr/local/include/TFEL/Math/MathException.hxx \ + /usr/local/include/TFEL/Exception/TFELException.hxx \ + /usr/local/include/TFEL/Math/Vector/VectorConceptOperations.ixx \ + /usr/local/include/TFEL/Math/Vector/TinyVectorFromTinyVectorView.hxx \ + /usr/local/include/TFEL/Math/Vector/VectorUtilities.hxx \ + /usr/local/include/TFEL/Math/Vector/tvector.ixx \ + /usr/local/include/TFEL/FSAlgorithm/FSAlgorithm.hxx \ + /usr/local/include/TFEL/FSAlgorithm/loop.hxx \ + /usr/local/include/TFEL/FSAlgorithm/fill.hxx \ + /usr/local/include/TFEL/FSAlgorithm/equal.hxx \ + /usr/local/include/TFEL/FSAlgorithm/transform.hxx \ + /usr/local/include/TFEL/FSAlgorithm/for_each.hxx \ + /usr/local/include/TFEL/FSAlgorithm/swap_ranges.hxx \ + /usr/local/include/TFEL/FSAlgorithm/generate.hxx \ + /usr/local/include/TFEL/FSAlgorithm/min_element.hxx \ + /usr/local/include/TFEL/FSAlgorithm/max_element.hxx \ + /usr/local/include/TFEL/FSAlgorithm/accumulate.hxx \ + /usr/local/include/TFEL/FSAlgorithm/inner_product.hxx \ + /usr/local/include/TFEL/FSAlgorithm/iota.hxx \ + /usr/local/include/TFEL/Math/General/DotProduct.hxx \ + /usr/local/include/TFEL/Math/Vector/tvectorResultType.hxx \ + /usr/local/include/TFEL/Math/Quantity/Unit.hxx /usr/include/c++/8/ratio \ + /usr/local/include/TFEL/Math/Quantity/Unit.ixx \ + /usr/local/include/TFEL/Config/Internals/SpatialGradType.hxx \ + /usr/local/include/TFEL/Config/Internals/InvJacobianType.hxx \ + /usr/local/include/TFEL/Math/tmatrix.hxx \ + /usr/local/include/TFEL/Math/Matrix/MatrixConcept.hxx \ + /usr/local/include/TFEL/Math/Forward/MatrixConcept.hxx \ + /usr/local/include/TFEL/Math/Matrix/MatrixConcept.ixx \ + /usr/local/include/TFEL/Math/Matrix/MatrixConceptOperations.hxx \ + /usr/local/include/TFEL/Math/power.hxx \ + /usr/local/include/TFEL/Math/power.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_row_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_row_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_row_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_row_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_column_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_column_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_column_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_column_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_submatrix_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_submatrix_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_submatrix_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_submatrix_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix.ixx \ + /usr/local/include/TFEL/Math/General/AbsCompare.hxx \ + /usr/local/include/TFEL/Math/Matrix/MatrixUtilities.hxx \ + /usr/local/include/TFEL/Math/Matrix/MatrixUtilities.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrixResultType.hxx \ + /usr/local/include/TFEL/Math/Matrix/TVectorTMatrixExpr.hxx \ + /usr/local/include/TFEL/Math/General/ObjectObjectRandomAccessConstIterator.hxx \ + /usr/local/include/TFEL/Math/Matrix/TMatrixTVectorExpr.hxx \ + /usr/local/include/TFEL/Config/Internals/JacobianType.hxx \ + /usr/local/include/TFEL/Config/Internals/TemperatureGradientType.hxx \ + /usr/local/include/TFEL/Config/Internals/HeatFluxVectorType.hxx \ + /usr/local/include/TFEL/Config/Internals/ThermalConductivityMatrixType.hxx \ + /usr/local/include/TFEL/TypeTraits/IsReal.hxx \ + /usr/local/include/TFEL/Math/General/IEEE754.hxx \ + /usr/local/include/TFEL/Math/General/IEEE754.ixx \ /usr/include/c++/8/cfloat \ /usr/lib/gcc/x86_64-linux-gnu/8/include/float.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/stensor.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2Concept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/TensorConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2Concept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2TransposeExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/ST2toST2Concept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2ConceptPushForward.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/MathConstants.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/EmptyClass.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ConstExprMathFunctions.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorConcept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorTransposeExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorConcept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/MatrixViewFromTensor.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorConceptOperations.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/stensor.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/SymmetricStensorProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/SymmetricStensorProduct.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorImport.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorExport.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorExport.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorChangeBasis.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorInvert.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorDeterminant.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/BuildStensorFromMatrix.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/BuildStensorFromVectorDiadicProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/BuildStensorFromVectorsSymmetricDiadicProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/BuildStensorFromEigenValuesAndVectors.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorEigenSolver.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/FSESSymmetricEigenSolver.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/FSESSymmetricEigenSolver.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevc3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevc3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/Utilities.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/Utilities.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevv3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevv3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/GteSymmetricEigenSolver.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/GteSymmetricEigenSolver.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorComputeEigenValues.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/CubicRoots.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorComputeEigenVectors.hxx \ + /usr/local/include/TFEL/Math/stensor.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2Concept.hxx \ + /usr/local/include/TFEL/Math/Forward/TensorConcept.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2Concept.ixx \ + /usr/local/include/TFEL/Math/LU/LUDecomp.hxx \ + /usr/local/include/TFEL/Math/LU/LUException.hxx \ + /usr/local/include/TFEL/Math/LU/LUDecomp.ixx \ + /usr/local/include/TFEL/Math/LU/TinyPermutation.hxx \ + /usr/local/include/TFEL/Math/LU/TinyPermutation.ixx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2TransposeExpr.hxx \ + /usr/local/include/TFEL/Math/Forward/ST2toST2Concept.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2ConceptPushForward.ixx \ + /usr/local/include/TFEL/Math/General/MathConstants.hxx \ + /usr/local/include/TFEL/Metaprogramming/EmptyClass.hxx \ + /usr/local/include/TFEL/Math/General/ConstExprMathFunctions.hxx \ + /usr/local/include/TFEL/Math/Stensor/StensorConcept.hxx \ + /usr/local/include/TFEL/Math/Stensor/StensorConcept.ixx \ + /usr/local/include/TFEL/Math/Stensor/StensorConceptOperations.hxx \ + /usr/local/include/TFEL/Math/Stensor/StensorProduct.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorConcept.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorTransposeExpr.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorConcept.ixx \ + /usr/local/include/TFEL/Math/Tensor/MatrixViewFromTensor.hxx \ + /usr/local/include/TFEL/Math/Stensor/StensorConceptOperations.ixx \ + /usr/local/include/TFEL/Math/Stensor/stensor.ixx \ + /usr/local/include/TFEL/Math/Stensor/SymmetricStensorProduct.hxx \ + /usr/local/include/TFEL/Math/Stensor/SymmetricStensorProduct.ixx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorImport.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorExport.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorExport.ixx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorChangeBasis.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorInvert.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorDeterminant.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/BuildStensorFromMatrix.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/BuildStensorFromVectorDiadicProduct.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/BuildStensorFromVectorsSymmetricDiadicProduct.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/BuildStensorFromEigenValuesAndVectors.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorEigenSolver.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/FSESSymmetricEigenSolver.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/FSESSymmetricEigenSolver.ixx \ + /usr/local/include/FSES/syevc3.hxx /usr/local/include/FSES/syevc3.ixx \ + /usr/local/include/FSES/Utilities.hxx \ + /usr/local/include/FSES/Utilities.ixx /usr/local/include/FSES/syevv3.hxx \ + /usr/local/include/FSES/syevv3.ixx \ + /usr/local/include/TFEL/Math/Stensor/Internals/GteSymmetricEigenSolver.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/GteSymmetricEigenSolver.ixx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorComputeEigenValues.hxx \ + /usr/local/include/TFEL/Math/General/CubicRoots.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorComputeEigenVectors.hxx \ /usr/include/c++/8/cassert /usr/include/assert.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevj3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevj3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevq3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevq3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/sytrd3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/sytrd3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevd3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevd3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syev2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syev2.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/slvsec3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/slvsec3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevh3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevh3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/SortEigenValues.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/SortEigenVectors.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorComputeEigenValuesDerivatives.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorComputeEigenVectorsDerivatives.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorComputeIsotropicFunctionDerivative.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/stensorResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/DecompositionInPositiveAndNegativeParts.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/DecompositionInPositiveAndNegativeParts.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorConceptIO.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrixIO.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/st2tost2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/T2toST2Concept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/T2toST2Concept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/T2toST2Concept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2ConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2StensorProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/StensorST2toST2ProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2ST2toST2ProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/StensorSquareDerivative.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/st2tost2.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/BaseCast.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/TinyMatrixInvert.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/TinyMatrixSolve.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/TinyPermutation.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/TinyPermutation.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/LUException.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/TinyMatrixSolve.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/LUDecomp.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/LUDecomp.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/TinyMatrixInvert.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ConvertT2toST2ToST2toST2Expr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/BuildFromRotationMatrix.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/StensorSymmetricProductDerivative.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/SymmetricStensorProductDerivative.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/SymmetricStensorProductDerivative.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ChangeBasis.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/st2tost2ResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2ConceptIO.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/ModellingHypothesis.hxx \ + /usr/local/include/FSES/syevj3.hxx /usr/local/include/FSES/syevj3.ixx \ + /usr/local/include/FSES/syevq3.hxx /usr/local/include/FSES/syevq3.ixx \ + /usr/local/include/FSES/sytrd3.hxx /usr/local/include/FSES/sytrd3.ixx \ + /usr/local/include/FSES/syevd3.hxx /usr/local/include/FSES/syevd3.ixx \ + /usr/local/include/FSES/syev2.hxx /usr/local/include/FSES/syev2.ixx \ + /usr/local/include/FSES/slvsec3.hxx /usr/local/include/FSES/slvsec3.ixx \ + /usr/local/include/FSES/syevh3.hxx /usr/local/include/FSES/syevh3.ixx \ + /usr/local/include/TFEL/Math/Stensor/Internals/SortEigenValues.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/SortEigenVectors.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorComputeEigenValuesDerivatives.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorComputeEigenVectorsDerivatives.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorComputeIsotropicFunctionDerivative.hxx \ + /usr/local/include/TFEL/Math/Stensor/stensorResultType.hxx \ + /usr/local/include/TFEL/Math/Stensor/DecompositionInPositiveAndNegativeParts.hxx \ + /usr/local/include/TFEL/Math/Stensor/DecompositionInPositiveAndNegativeParts.ixx \ + /usr/local/include/TFEL/Math/Stensor/StensorConceptIO.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrixIO.hxx \ + /usr/local/include/TFEL/Math/st2tost2.hxx \ + /usr/local/include/TFEL/Math/T2toST2/T2toST2Concept.hxx \ + /usr/local/include/TFEL/Math/Forward/T2toST2Concept.hxx \ + /usr/local/include/TFEL/Math/T2toST2/T2toST2Concept.ixx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2ConceptOperations.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2StensorProductExpr.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/StensorST2toST2ProductExpr.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2ST2toST2ProductExpr.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/StensorSquareDerivative.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/st2tost2.ixx \ + /usr/local/include/TFEL/Math/General/BaseCast.hxx \ + /usr/local/include/TFEL/Math/TinyMatrixInvert.hxx \ + /usr/local/include/TFEL/Math/TinyMatrixSolve.hxx \ + /usr/local/include/TFEL/Math/LU/TinyMatrixSolve.ixx \ + /usr/local/include/TFEL/Math/Matrix/TinyMatrixInvert.ixx \ + /usr/local/include/TFEL/Math/ST2toST2/ConvertT2toST2ToST2toST2Expr.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/BuildFromRotationMatrix.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/StensorSymmetricProductDerivative.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/SymmetricStensorProductDerivative.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/SymmetricStensorProductDerivative.ixx \ + /usr/local/include/TFEL/Math/ST2toST2/ChangeBasis.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/st2tost2ResultType.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2ConceptIO.hxx \ + /usr/local/include/TFEL/Material/ModellingHypothesis.hxx \ /usr/include/c++/8/vector /usr/include/c++/8/bits/stl_uninitialized.h \ /usr/include/c++/8/bits/stl_vector.h \ /usr/include/c++/8/bits/stl_bvector.h /usr/include/c++/8/bits/vector.tcc \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/State.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/Types.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/Types.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/State.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/BehaviourData.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/BehaviourData.h \ + /usr/local/include/MFront/GenericBehaviour/State.hxx \ + /usr/local/include/MFront/GenericBehaviour/Types.hxx \ + /usr/local/include/MFront/GenericBehaviour/Types.h \ + /usr/local/include/MFront/GenericBehaviour/State.h \ + /usr/local/include/MFront/GenericBehaviour/BehaviourData.hxx \ + /usr/local/include/MFront/GenericBehaviour/BehaviourData.h \ ../include/TFEL/Material/IsotropicLinearHardeningPlasticityIntegrationData.hxx \ ../include/TFEL/Material/IsotropicLinearHardeningPlasticity.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/MaterialException.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/MechanicalBehaviour.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/FiniteStrainBehaviourTangentOperatorBase.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/MechanicalBehaviourTraits.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/OutOfBoundsPolicy.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/BoundsCheck.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/qt.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/TypeList.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/TypeList.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/Forward/TypeList.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/IsSubClassOf.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/GenerateTypeList.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qtLimits.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qtSpecific.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qtSamples.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qt.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qtOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qtOperations.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/IsotropicPlasticity.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/IsotropicPlasticity.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/Lame.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/Hosford1972YieldCriterion.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/Hosford1972YieldCriterion.ixx + /usr/local/include/TFEL/Material/MaterialException.hxx \ + /usr/local/include/TFEL/Material/MechanicalBehaviour.hxx \ + /usr/local/include/TFEL/Material/FiniteStrainBehaviourTangentOperatorBase.hxx \ + /usr/local/include/TFEL/Material/MechanicalBehaviourTraits.hxx \ + /usr/local/include/TFEL/Material/OutOfBoundsPolicy.hxx \ + /usr/local/include/TFEL/Material/BoundsCheck.hxx \ + /usr/local/include/TFEL/Math/qt.hxx \ + /usr/local/include/TFEL/Metaprogramming/TypeList.hxx \ + /usr/local/include/TFEL/Metaprogramming/TypeList.ixx \ + /usr/local/include/TFEL/Metaprogramming/Forward/TypeList.hxx \ + /usr/local/include/TFEL/Metaprogramming/IsSubClassOf.hxx \ + /usr/local/include/TFEL/Metaprogramming/GenerateTypeList.hxx \ + /usr/local/include/TFEL/Math/Quantity/qtLimits.hxx \ + /usr/local/include/TFEL/Math/Quantity/qtSpecific.hxx \ + /usr/local/include/TFEL/Math/Quantity/qtSamples.hxx \ + /usr/local/include/TFEL/Math/Quantity/qt.ixx \ + /usr/local/include/TFEL/Math/Quantity/qtOperations.hxx \ + /usr/local/include/TFEL/Math/Quantity/qtOperations.ixx \ + /usr/local/include/TFEL/Material/IsotropicPlasticity.hxx \ + /usr/local/include/TFEL/Material/IsotropicPlasticity.ixx \ + /usr/local/include/TFEL/Material/Lame.hxx \ + /usr/local/include/TFEL/Material/Hosford1972YieldCriterion.hxx \ + /usr/local/include/TFEL/Material/Hosford1972YieldCriterion.ixx diff --git a/materials/src/LogarithmicStrainPlasticity-generic.cxx b/materials/src/LogarithmicStrainPlasticity-generic.cxx index a5ce4a1..a901482 100644 --- a/materials/src/LogarithmicStrainPlasticity-generic.cxx +++ b/materials/src/LogarithmicStrainPlasticity-generic.cxx @@ -43,11 +43,14 @@ return policy; extern "C"{ #endif /* __cplusplus */ +MFRONT_SHAREDOBJ const char* +LogarithmicStrainPlasticity_build_id = ""; + MFRONT_SHAREDOBJ const char* LogarithmicStrainPlasticity_mfront_ept = "LogarithmicStrainPlasticity"; MFRONT_SHAREDOBJ const char* -LogarithmicStrainPlasticity_tfel_version = "3.3.0-dev"; +LogarithmicStrainPlasticity_tfel_version = "3.3.0"; MFRONT_SHAREDOBJ unsigned short LogarithmicStrainPlasticity_mfront_mkt = 1u; @@ -107,17 +110,17 @@ MFRONT_SHAREDOBJ const char * LogarithmicStrainPlasticity_Parameters[9] = {"Youn "theta","epsilon","iterMax"}; MFRONT_SHAREDOBJ int LogarithmicStrainPlasticity_ParametersTypes [] = {0,0,0,0,0,0,0,0,2}; -MFRONT_SHAREDOBJ double LogarithmicStrainPlasticity_YoungModulus_ParameterDefaultValue = 2.1e+11; +MFRONT_SHAREDOBJ double LogarithmicStrainPlasticity_YoungModulus_ParameterDefaultValue = 210000000000; MFRONT_SHAREDOBJ double LogarithmicStrainPlasticity_PoissonRatio_ParameterDefaultValue = 0; -MFRONT_SHAREDOBJ double LogarithmicStrainPlasticity_s0_ParameterDefaultValue = 2.5e+08; +MFRONT_SHAREDOBJ double LogarithmicStrainPlasticity_s0_ParameterDefaultValue = 250000000; -MFRONT_SHAREDOBJ double LogarithmicStrainPlasticity_Et_ParameterDefaultValue = 1e+06; +MFRONT_SHAREDOBJ double LogarithmicStrainPlasticity_Et_ParameterDefaultValue = 1000000; MFRONT_SHAREDOBJ double LogarithmicStrainPlasticity_minimal_time_step_scaling_factor_ParameterDefaultValue = 0.1; -MFRONT_SHAREDOBJ double LogarithmicStrainPlasticity_maximal_time_step_scaling_factor_ParameterDefaultValue = 1.79769e+308; +MFRONT_SHAREDOBJ double LogarithmicStrainPlasticity_maximal_time_step_scaling_factor_ParameterDefaultValue = 1.7976931348623e+308; MFRONT_SHAREDOBJ double LogarithmicStrainPlasticity_theta_ParameterDefaultValue = 1; diff --git a/materials/src/LogarithmicStrainPlasticity-generic.d b/materials/src/LogarithmicStrainPlasticity-generic.d index 3511337..5f7f56a 100644 --- a/materials/src/LogarithmicStrainPlasticity-generic.d +++ b/materials/src/LogarithmicStrainPlasticity-generic.d @@ -137,47 +137,45 @@ LogarithmicStrainPlasticity-generic.o LogarithmicStrainPlasticity-generic.d : \ /usr/include/c++/8/bits/basic_ios.tcc \ /usr/include/c++/8/bits/ostream.tcc /usr/include/c++/8/istream \ /usr/include/c++/8/bits/istream.tcc \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/OutOfBoundsPolicy.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorView.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/StaticAssert.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Macros.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/TFELConfig.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/TFEL_MATH_Config.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/EmptyRunTimeProperties.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ExpressionTemplates/Expr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/ResultOf.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/InvalidType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/IsConstCallable.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/BasicOperations.hxx \ + /usr/local/include/TFEL/Material/OutOfBoundsPolicy.hxx \ + /usr/local/include/TFEL/Math/Stensor/StensorView.hxx \ + /usr/local/include/TFEL/Metaprogramming/StaticAssert.hxx \ + /usr/local/include/TFEL/Macros.hxx \ + /usr/local/include/TFEL/Config/TFELConfig.hxx \ + /usr/local/include/TFEL/Config/TFEL_MATH_Config.hxx \ + /usr/local/include/TFEL/Math/General/EmptyRunTimeProperties.hxx \ + /usr/local/include/TFEL/Math/ExpressionTemplates/Expr.hxx \ + /usr/local/include/TFEL/Metaprogramming/ResultOf.hxx \ + /usr/local/include/TFEL/Metaprogramming/InvalidType.hxx \ + /usr/local/include/TFEL/Metaprogramming/IsConstCallable.hxx \ + /usr/local/include/TFEL/Math/General/BasicOperations.hxx \ /usr/include/c++/8/functional /usr/include/c++/8/tuple \ /usr/include/c++/8/utility /usr/include/c++/8/bits/stl_relops.h \ /usr/include/c++/8/array /usr/include/c++/8/bits/uses_allocator.h \ /usr/include/c++/8/bits/invoke.h /usr/include/c++/8/bits/refwrap.h \ /usr/include/c++/8/bits/std_function.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsScalar.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/Complex.hxx \ + /usr/local/include/TFEL/TypeTraits/IsScalar.hxx \ + /usr/local/include/TFEL/Math/Forward/Complex.hxx \ /usr/include/c++/8/ciso646 \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsComplex.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsUnaryOperator.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/Promote.hxx \ - /usr/include/c++/8/limits \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/Promote/Promote.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ComputeBinaryResult.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsInvalid.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ComputeObjectTag.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ComputeObjectTag.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ComputeUnaryResult.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/UnaryResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ConceptRebind.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorUtilities.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/Implements.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/BaseType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsAssignableTo.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/Abs.hxx \ - /usr/include/c++/8/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/local/include/TFEL/TypeTraits/IsComplex.hxx \ + /usr/local/include/TFEL/TypeTraits/IsUnaryOperator.hxx \ + /usr/local/include/TFEL/TypeTraits/Promote.hxx /usr/include/c++/8/limits \ + /usr/local/include/TFEL/TypeTraits/Promote/Promote.ixx \ + /usr/local/include/TFEL/Math/General/ComputeBinaryResult.hxx \ + /usr/local/include/TFEL/Math/General/ResultType.hxx \ + /usr/local/include/TFEL/TypeTraits/IsInvalid.hxx \ + /usr/local/include/TFEL/Math/General/ComputeObjectTag.hxx \ + /usr/local/include/TFEL/Math/General/ComputeObjectTag.ixx \ + /usr/local/include/TFEL/Math/General/ComputeUnaryResult.hxx \ + /usr/local/include/TFEL/Math/General/UnaryResultType.hxx \ + /usr/local/include/TFEL/Math/General/ConceptRebind.hxx \ + /usr/local/include/TFEL/Math/Vector/VectorUtilities.hxx \ + /usr/local/include/TFEL/Math/Stensor/StensorConcept.hxx \ + /usr/local/include/TFEL/Metaprogramming/Implements.hxx \ + /usr/local/include/TFEL/TypeTraits/BaseType.hxx \ + /usr/local/include/TFEL/TypeTraits/IsAssignableTo.hxx \ + /usr/local/include/TFEL/Math/General/Abs.hxx /usr/include/c++/8/cmath \ + /usr/include/math.h /usr/include/x86_64-linux-gnu/bits/math-vector.h \ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ @@ -187,291 +185,280 @@ LogarithmicStrainPlasticity-generic.o LogarithmicStrainPlasticity-generic.d : \ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ /usr/include/x86_64-linux-gnu/bits/mathinline.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/AbsType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/RealPartType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsFundamentalNumericType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/Abs.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/MathConstants.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/EmptyClass.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsReal.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ConstExprMathFunctions.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/power.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/power.ixx \ - /usr/include/c++/8/ratio \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorConcept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorSizeToDime.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/stensor.hxx \ - /usr/include/c++/8/cstddef /usr/include/c++/8/iterator \ - /usr/include/c++/8/bits/stream_iterator.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsSafelyReinterpretCastableTo.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/VectorConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorConcept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ExpressionTemplates/StandardOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorVectorDotProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/RunTimeCheck.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/MathException.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Exception/TFELException.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorConceptOperations.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/MatrixConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/MatrixConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/MatrixConcept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2Concept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/TensorConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2Concept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2TransposeExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/ST2toST2Concept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2ConceptPushForward.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/tensor.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/stensor.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/tmatrix.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorTransposeExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorConcept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/transform.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/copy.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsRandomAccessIterator.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/tvector.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorSizeToDime.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/MatrixViewFromTensor.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorConceptOperations.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/st2tost2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/fsarray.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/fsarray.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/stensor.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/FSAlgorithm.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/loop.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/fill.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/equal.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/for_each.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/swap_ranges.hxx \ + /usr/local/include/TFEL/TypeTraits/AbsType.hxx \ + /usr/local/include/TFEL/TypeTraits/RealPartType.hxx \ + /usr/local/include/TFEL/TypeTraits/IsFundamentalNumericType.hxx \ + /usr/local/include/TFEL/Math/General/Abs.ixx \ + /usr/local/include/TFEL/Math/General/MathConstants.hxx \ + /usr/local/include/TFEL/Metaprogramming/EmptyClass.hxx \ + /usr/local/include/TFEL/TypeTraits/IsReal.hxx \ + /usr/local/include/TFEL/Math/General/ConstExprMathFunctions.hxx \ + /usr/local/include/TFEL/Math/power.hxx \ + /usr/local/include/TFEL/Math/power.ixx /usr/include/c++/8/ratio \ + /usr/local/include/TFEL/Math/Stensor/StensorConcept.ixx \ + /usr/local/include/TFEL/Math/Stensor/StensorSizeToDime.hxx \ + /usr/local/include/TFEL/Math/stensor.hxx /usr/include/c++/8/cstddef \ + /usr/include/c++/8/iterator /usr/include/c++/8/bits/stream_iterator.h \ + /usr/local/include/TFEL/TypeTraits/IsSafelyReinterpretCastableTo.hxx \ + /usr/local/include/TFEL/Math/Vector/VectorConcept.hxx \ + /usr/local/include/TFEL/Math/Forward/VectorConcept.hxx \ + /usr/local/include/TFEL/Math/Vector/VectorConcept.ixx \ + /usr/local/include/TFEL/Math/Vector/VectorConceptOperations.hxx \ + /usr/local/include/TFEL/Math/ExpressionTemplates/StandardOperations.hxx \ + /usr/local/include/TFEL/Math/Vector/VectorVectorDotProduct.hxx \ + /usr/local/include/TFEL/Math/General/RunTimeCheck.hxx \ + /usr/local/include/TFEL/Math/MathException.hxx \ + /usr/local/include/TFEL/Exception/TFELException.hxx \ + /usr/local/include/TFEL/Math/Vector/VectorConceptOperations.ixx \ + /usr/local/include/TFEL/Math/Matrix/MatrixConcept.hxx \ + /usr/local/include/TFEL/Math/Forward/MatrixConcept.hxx \ + /usr/local/include/TFEL/Math/Matrix/MatrixConcept.ixx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2Concept.hxx \ + /usr/local/include/TFEL/Math/Forward/TensorConcept.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2Concept.ixx \ + /usr/local/include/TFEL/Math/Matrix/MatrixUtilities.hxx \ + /usr/local/include/TFEL/Math/Matrix/MatrixUtilities.ixx \ + /usr/local/include/TFEL/Math/LU/LUDecomp.hxx \ /usr/include/c++/8/algorithm /usr/include/c++/8/bits/stl_algo.h \ /usr/include/c++/8/bits/algorithmfwd.h \ /usr/include/c++/8/bits/stl_heap.h /usr/include/c++/8/bits/stl_tempbuf.h \ /usr/include/c++/8/bits/stl_construct.h \ /usr/include/c++/8/bits/uniform_int_dist.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/generate.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/min_element.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/max_element.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/accumulate.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/inner_product.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/iota.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/SymmetricStensorProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/SymmetricStensorProduct.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorImport.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorExport.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorExport.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorChangeBasis.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/tmatrix.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/MatrixConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/tvector.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/TinyVectorFromTinyVectorView.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/tvector.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/DotProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/tvectorResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_row_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_row_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_row_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_row_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_column_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_column_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_column_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_column_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_submatrix_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_submatrix_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_submatrix_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_submatrix_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/AbsCompare.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/MatrixUtilities.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrixResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/TVectorTMatrixExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ObjectObjectRandomAccessConstIterator.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/TMatrixTVectorExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorInvert.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorDeterminant.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/BuildStensorFromMatrix.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/BuildStensorFromVectorDiadicProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/BuildStensorFromVectorsSymmetricDiadicProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/BuildStensorFromEigenValuesAndVectors.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorEigenSolver.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/FSESSymmetricEigenSolver.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/FSESSymmetricEigenSolver.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevc3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevc3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/Utilities.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/Utilities.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevv3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevv3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/GteSymmetricEigenSolver.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/GteSymmetricEigenSolver.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorComputeEigenValues.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/CubicRoots.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorComputeEigenVectors.hxx \ + /usr/local/include/TFEL/Math/LU/LUException.hxx \ + /usr/local/include/TFEL/Math/LU/LUDecomp.ixx \ + /usr/local/include/TFEL/Math/LU/TinyPermutation.hxx \ + /usr/local/include/TFEL/Math/tvector.hxx \ + /usr/local/include/TFEL/FSAlgorithm/copy.hxx \ + /usr/local/include/TFEL/TypeTraits/IsRandomAccessIterator.hxx \ + /usr/local/include/TFEL/Math/fsarray.hxx \ + /usr/local/include/TFEL/Math/General/fsarray.ixx \ + /usr/local/include/TFEL/Math/Vector/TinyVectorFromTinyVectorView.hxx \ + /usr/local/include/TFEL/Math/Forward/tvector.hxx \ + /usr/local/include/TFEL/Math/Forward/tmatrix.hxx \ + /usr/local/include/TFEL/Math/Vector/tvector.ixx \ + /usr/local/include/TFEL/FSAlgorithm/FSAlgorithm.hxx \ + /usr/local/include/TFEL/FSAlgorithm/loop.hxx \ + /usr/local/include/TFEL/FSAlgorithm/fill.hxx \ + /usr/local/include/TFEL/FSAlgorithm/equal.hxx \ + /usr/local/include/TFEL/FSAlgorithm/transform.hxx \ + /usr/local/include/TFEL/FSAlgorithm/for_each.hxx \ + /usr/local/include/TFEL/FSAlgorithm/swap_ranges.hxx \ + /usr/local/include/TFEL/FSAlgorithm/generate.hxx \ + /usr/local/include/TFEL/FSAlgorithm/min_element.hxx \ + /usr/local/include/TFEL/FSAlgorithm/max_element.hxx \ + /usr/local/include/TFEL/FSAlgorithm/accumulate.hxx \ + /usr/local/include/TFEL/FSAlgorithm/inner_product.hxx \ + /usr/local/include/TFEL/FSAlgorithm/iota.hxx \ + /usr/local/include/TFEL/Math/General/DotProduct.hxx \ + /usr/local/include/TFEL/Math/Vector/tvectorResultType.hxx \ + /usr/local/include/TFEL/Math/LU/TinyPermutation.ixx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2TransposeExpr.hxx \ + /usr/local/include/TFEL/Math/Forward/ST2toST2Concept.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2ConceptPushForward.ixx \ + /usr/local/include/TFEL/Math/Stensor/StensorConceptOperations.hxx \ + /usr/local/include/TFEL/Math/Stensor/StensorProduct.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorConcept.hxx \ + /usr/local/include/TFEL/Math/Forward/tensor.hxx \ + /usr/local/include/TFEL/Math/Forward/stensor.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorTransposeExpr.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorConcept.ixx \ + /usr/local/include/TFEL/Math/Tensor/TensorSizeToDime.hxx \ + /usr/local/include/TFEL/Math/Tensor/MatrixViewFromTensor.hxx \ + /usr/local/include/TFEL/Math/Stensor/StensorConceptOperations.ixx \ + /usr/local/include/TFEL/Math/Forward/st2tost2.hxx \ + /usr/local/include/TFEL/Math/Stensor/stensor.ixx \ + /usr/local/include/TFEL/Math/Stensor/SymmetricStensorProduct.hxx \ + /usr/local/include/TFEL/Math/Stensor/SymmetricStensorProduct.ixx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorImport.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorExport.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorExport.ixx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorChangeBasis.hxx \ + /usr/local/include/TFEL/Math/tmatrix.hxx \ + /usr/local/include/TFEL/Math/Matrix/MatrixConceptOperations.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_row_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_row_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_row_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_row_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_column_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_column_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_column_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_column_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_submatrix_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_submatrix_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_submatrix_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_submatrix_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix.ixx \ + /usr/local/include/TFEL/Math/General/AbsCompare.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrixResultType.hxx \ + /usr/local/include/TFEL/Math/Matrix/TVectorTMatrixExpr.hxx \ + /usr/local/include/TFEL/Math/General/ObjectObjectRandomAccessConstIterator.hxx \ + /usr/local/include/TFEL/Math/Matrix/TMatrixTVectorExpr.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorInvert.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorDeterminant.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/BuildStensorFromMatrix.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/BuildStensorFromVectorDiadicProduct.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/BuildStensorFromVectorsSymmetricDiadicProduct.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/BuildStensorFromEigenValuesAndVectors.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorEigenSolver.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/FSESSymmetricEigenSolver.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/FSESSymmetricEigenSolver.ixx \ + /usr/local/include/FSES/syevc3.hxx /usr/local/include/FSES/syevc3.ixx \ + /usr/local/include/FSES/Utilities.hxx \ + /usr/local/include/FSES/Utilities.ixx /usr/local/include/FSES/syevv3.hxx \ + /usr/local/include/FSES/syevv3.ixx \ + /usr/local/include/TFEL/Math/Stensor/Internals/GteSymmetricEigenSolver.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/GteSymmetricEigenSolver.ixx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorComputeEigenValues.hxx \ + /usr/local/include/TFEL/Math/General/CubicRoots.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorComputeEigenVectors.hxx \ /usr/include/c++/8/cassert /usr/include/assert.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevj3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevj3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevq3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevq3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/sytrd3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/sytrd3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevd3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevd3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syev2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syev2.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/slvsec3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/slvsec3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevh3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevh3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/SortEigenValues.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/SortEigenVectors.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorComputeEigenValuesDerivatives.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorComputeEigenVectorsDerivatives.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorComputeIsotropicFunctionDerivative.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/stensorResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/DecompositionInPositiveAndNegativeParts.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/DecompositionInPositiveAndNegativeParts.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorView.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/tensor.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorViewFromStensor.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorConceptOperations.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/tensor.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorChangeBasis.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/tensorResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/t2tot2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/t2tot2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/T2toST2Concept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/T2toST2Concept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/T2toST2Concept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/T2toT2Concept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/T2toT2Concept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/T2toT2Concept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/T2toT2ConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/T2toT2TensorProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/TensorT2toT2ProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/T2toT2T2toT2ProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/t2tot2.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/TensorProductLeftDerivativeExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/TensorProductRightDerivativeExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/BuildFromRotationMatrix.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/ChangeBasis.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/t2tot2ResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/T2toT2View.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/T2toST2View.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/t2tost2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/t2tost2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/T2toST2ConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/HasRandomAccessConstIterator.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/StensorT2toST2ProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/T2toST2TensorProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/ST2toST2T2toST2ProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/T2toST2T2toT2ProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/t2tost2.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/LeftCauchyGreenTensorDerivativeExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/RightCauchyGreenTensorDerivativeExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/t2tost2ResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/FiniteStrainBehaviourTangentOperator.hxx \ + /usr/local/include/FSES/syevj3.hxx /usr/local/include/FSES/syevj3.ixx \ + /usr/local/include/FSES/syevq3.hxx /usr/local/include/FSES/syevq3.ixx \ + /usr/local/include/FSES/sytrd3.hxx /usr/local/include/FSES/sytrd3.ixx \ + /usr/local/include/FSES/syevd3.hxx /usr/local/include/FSES/syevd3.ixx \ + /usr/local/include/FSES/syev2.hxx /usr/local/include/FSES/syev2.ixx \ + /usr/local/include/FSES/slvsec3.hxx /usr/local/include/FSES/slvsec3.ixx \ + /usr/local/include/FSES/syevh3.hxx /usr/local/include/FSES/syevh3.ixx \ + /usr/local/include/TFEL/Math/Stensor/Internals/SortEigenValues.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/SortEigenVectors.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorComputeEigenValuesDerivatives.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorComputeEigenVectorsDerivatives.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorComputeIsotropicFunctionDerivative.hxx \ + /usr/local/include/TFEL/Math/Stensor/stensorResultType.hxx \ + /usr/local/include/TFEL/Math/Stensor/DecompositionInPositiveAndNegativeParts.hxx \ + /usr/local/include/TFEL/Math/Stensor/DecompositionInPositiveAndNegativeParts.ixx \ + /usr/local/include/TFEL/Math/Tensor/TensorView.hxx \ + /usr/local/include/TFEL/Math/tensor.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorConceptOperations.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorProduct.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorViewFromStensor.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorConceptOperations.ixx \ + /usr/local/include/TFEL/Math/Tensor/tensor.ixx \ + /usr/local/include/TFEL/Math/Tensor/TensorChangeBasis.hxx \ + /usr/local/include/TFEL/Math/Tensor/tensorResultType.hxx \ + /usr/local/include/TFEL/Math/Forward/t2tot2.hxx \ + /usr/local/include/TFEL/Math/t2tot2.hxx \ + /usr/local/include/TFEL/Math/T2toST2/T2toST2Concept.hxx \ + /usr/local/include/TFEL/Math/Forward/T2toST2Concept.hxx \ + /usr/local/include/TFEL/Math/T2toST2/T2toST2Concept.ixx \ + /usr/local/include/TFEL/Math/T2toT2/T2toT2Concept.hxx \ + /usr/local/include/TFEL/Math/Forward/T2toT2Concept.hxx \ + /usr/local/include/TFEL/Math/T2toT2/T2toT2Concept.ixx \ + /usr/local/include/TFEL/Math/T2toT2/T2toT2ConceptOperations.hxx \ + /usr/local/include/TFEL/Math/T2toT2/T2toT2TensorProductExpr.hxx \ + /usr/local/include/TFEL/Math/T2toT2/TensorT2toT2ProductExpr.hxx \ + /usr/local/include/TFEL/Math/T2toT2/T2toT2T2toT2ProductExpr.hxx \ + /usr/local/include/TFEL/Math/T2toT2/t2tot2.ixx \ + /usr/local/include/TFEL/Math/T2toT2/TensorProductLeftDerivativeExpr.hxx \ + /usr/local/include/TFEL/Math/T2toT2/TensorProductRightDerivativeExpr.hxx \ + /usr/local/include/TFEL/Math/T2toT2/BuildFromRotationMatrix.hxx \ + /usr/local/include/TFEL/Math/T2toT2/ChangeBasis.hxx \ + /usr/local/include/TFEL/Math/T2toT2/t2tot2ResultType.hxx \ + /usr/local/include/TFEL/Math/T2toT2/T2toT2View.hxx \ + /usr/local/include/TFEL/Math/T2toST2/T2toST2View.hxx \ + /usr/local/include/TFEL/Math/t2tost2.hxx \ + /usr/local/include/TFEL/Math/Forward/t2tost2.hxx \ + /usr/local/include/TFEL/Math/T2toST2/T2toST2ConceptOperations.hxx \ + /usr/local/include/TFEL/Metaprogramming/HasRandomAccessConstIterator.hxx \ + /usr/local/include/TFEL/Math/T2toST2/StensorT2toST2ProductExpr.hxx \ + /usr/local/include/TFEL/Math/T2toST2/T2toST2TensorProductExpr.hxx \ + /usr/local/include/TFEL/Math/T2toST2/ST2toST2T2toST2ProductExpr.hxx \ + /usr/local/include/TFEL/Math/T2toST2/T2toST2T2toT2ProductExpr.hxx \ + /usr/local/include/TFEL/Math/T2toST2/t2tost2.ixx \ + /usr/local/include/TFEL/Math/T2toST2/LeftCauchyGreenTensorDerivativeExpr.hxx \ + /usr/local/include/TFEL/Math/T2toST2/RightCauchyGreenTensorDerivativeExpr.hxx \ + /usr/local/include/TFEL/Math/T2toST2/t2tost2ResultType.hxx \ + /usr/local/include/TFEL/Material/FiniteStrainBehaviourTangentOperator.hxx \ /usr/include/c++/8/vector /usr/include/c++/8/bits/stl_uninitialized.h \ /usr/include/c++/8/bits/stl_vector.h \ /usr/include/c++/8/bits/stl_bvector.h /usr/include/c++/8/bits/vector.tcc \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Utilities/GenTypeBase.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/TypeList.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/TypeList.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/Forward/TypeList.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/IsSubClassOf.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/GenerateTypeList.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Utilities/GenTypeCastError.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Utilities/GenTypeBase.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Utilities/GenTypeSpecialisation.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/FiniteStrainBehaviourTangentOperatorBase.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/FiniteStrainBehaviourTangentOperator.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/st2tost2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2ConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2StensorProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/StensorST2toST2ProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2ST2toST2ProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/StensorSquareDerivative.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/st2tost2.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/BaseCast.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/qt.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/TinyMatrixInvert.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/TinyMatrixSolve.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/TinyPermutation.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/TinyPermutation.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/LUException.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/TinyMatrixSolve.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/LUDecomp.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/LUDecomp.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/TinyMatrixInvert.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ConvertT2toST2ToST2toST2Expr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/BuildFromRotationMatrix.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/StensorSymmetricProductDerivative.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/SymmetricStensorProductDerivative.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/SymmetricStensorProductDerivative.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ChangeBasis.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/st2tost2ResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ConvertSpatialModuliToKirchhoffJaumanRateModuli.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/ConvertToPK1Derivative.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/ConvertToPK1Derivative.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/ConvertFromPK1Derivative.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toT2/ConvertFromPK1Derivative.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/LogarithmicStrainHandler.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/LogarithmicStrainHandler.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2View.hxx \ + /usr/local/include/TFEL/Utilities/GenTypeBase.hxx \ + /usr/local/include/TFEL/Metaprogramming/TypeList.hxx \ + /usr/local/include/TFEL/Metaprogramming/TypeList.ixx \ + /usr/local/include/TFEL/Metaprogramming/Forward/TypeList.hxx \ + /usr/local/include/TFEL/Metaprogramming/IsSubClassOf.hxx \ + /usr/local/include/TFEL/Metaprogramming/GenerateTypeList.hxx \ + /usr/local/include/TFEL/Utilities/GenTypeCastError.hxx \ + /usr/local/include/TFEL/Utilities/GenTypeBase.ixx \ + /usr/local/include/TFEL/Utilities/GenTypeSpecialisation.ixx \ + /usr/local/include/TFEL/Material/FiniteStrainBehaviourTangentOperatorBase.hxx \ + /usr/local/include/TFEL/Material/FiniteStrainBehaviourTangentOperator.ixx \ + /usr/local/include/TFEL/Math/st2tost2.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2ConceptOperations.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2StensorProductExpr.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/StensorST2toST2ProductExpr.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2ST2toST2ProductExpr.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/StensorSquareDerivative.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/st2tost2.ixx \ + /usr/local/include/TFEL/Math/General/BaseCast.hxx \ + /usr/local/include/TFEL/Math/Forward/qt.hxx \ + /usr/local/include/TFEL/Math/TinyMatrixInvert.hxx \ + /usr/local/include/TFEL/Math/TinyMatrixSolve.hxx \ + /usr/local/include/TFEL/Math/LU/TinyMatrixSolve.ixx \ + /usr/local/include/TFEL/Math/Matrix/TinyMatrixInvert.ixx \ + /usr/local/include/TFEL/Math/ST2toST2/ConvertT2toST2ToST2toST2Expr.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/BuildFromRotationMatrix.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/StensorSymmetricProductDerivative.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/SymmetricStensorProductDerivative.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/SymmetricStensorProductDerivative.ixx \ + /usr/local/include/TFEL/Math/ST2toST2/ChangeBasis.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/st2tost2ResultType.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ConvertSpatialModuliToKirchhoffJaumanRateModuli.hxx \ + /usr/local/include/TFEL/Math/T2toT2/ConvertToPK1Derivative.hxx \ + /usr/local/include/TFEL/Math/T2toT2/ConvertToPK1Derivative.ixx \ + /usr/local/include/TFEL/Math/T2toT2/ConvertFromPK1Derivative.hxx \ + /usr/local/include/TFEL/Math/T2toT2/ConvertFromPK1Derivative.ixx \ + /usr/local/include/TFEL/Material/LogarithmicStrainHandler.hxx \ + /usr/local/include/TFEL/Material/LogarithmicStrainHandler.ixx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2View.hxx \ ../include/TFEL/Material/LogarithmicStrainPlasticity.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Raise.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Raise.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/PhysicalConstants.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/TFELTypes.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/TFELTypesInternals.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/PositionType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/Unit.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/Unit.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/SpatialGradType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/InvJacobianType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/JacobianType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/TemperatureGradientType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/HeatFluxVectorType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/ThermalConductivityMatrixType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/IEEE754.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/IEEE754.ixx \ + /usr/local/include/TFEL/Raise.hxx /usr/local/include/TFEL/Raise.ixx \ + /usr/local/include/TFEL/PhysicalConstants.hxx \ + /usr/local/include/TFEL/Config/TFELTypes.hxx \ + /usr/local/include/TFEL/Config/Internals/TFELTypesInternals.hxx \ + /usr/local/include/TFEL/Config/Internals/PositionType.hxx \ + /usr/local/include/TFEL/Math/Quantity/Unit.hxx \ + /usr/local/include/TFEL/Math/Quantity/Unit.ixx \ + /usr/local/include/TFEL/Config/Internals/SpatialGradType.hxx \ + /usr/local/include/TFEL/Config/Internals/InvJacobianType.hxx \ + /usr/local/include/TFEL/Config/Internals/JacobianType.hxx \ + /usr/local/include/TFEL/Config/Internals/TemperatureGradientType.hxx \ + /usr/local/include/TFEL/Config/Internals/HeatFluxVectorType.hxx \ + /usr/local/include/TFEL/Config/Internals/ThermalConductivityMatrixType.hxx \ + /usr/local/include/TFEL/Math/General/IEEE754.hxx \ + /usr/local/include/TFEL/Math/General/IEEE754.ixx \ /usr/include/c++/8/cfloat \ /usr/lib/gcc/x86_64-linux-gnu/8/include/float.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/MaterialException.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/MechanicalBehaviour.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/ModellingHypothesis.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/MechanicalBehaviourTraits.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/BoundsCheck.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/qt.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qtLimits.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qtSpecific.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qtSamples.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qt.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qtOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qtOperations.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/IsotropicPlasticity.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/IsotropicPlasticity.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/Lame.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/Hosford1972YieldCriterion.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/Hosford1972YieldCriterion.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/LogarithmicStrainComputeAxialStrainIncrementElasticPrediction.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/LogarithmicStrainComputeAxialStrainIncrementElasticPrediction.ixx \ + /usr/local/include/TFEL/Material/MaterialException.hxx \ + /usr/local/include/TFEL/Material/MechanicalBehaviour.hxx \ + /usr/local/include/TFEL/Material/ModellingHypothesis.hxx \ + /usr/local/include/TFEL/Material/MechanicalBehaviourTraits.hxx \ + /usr/local/include/TFEL/Material/BoundsCheck.hxx \ + /usr/local/include/TFEL/Math/qt.hxx \ + /usr/local/include/TFEL/Math/Quantity/qtLimits.hxx \ + /usr/local/include/TFEL/Math/Quantity/qtSpecific.hxx \ + /usr/local/include/TFEL/Math/Quantity/qtSamples.hxx \ + /usr/local/include/TFEL/Math/Quantity/qt.ixx \ + /usr/local/include/TFEL/Math/Quantity/qtOperations.hxx \ + /usr/local/include/TFEL/Math/Quantity/qtOperations.ixx \ + /usr/local/include/TFEL/Material/IsotropicPlasticity.hxx \ + /usr/local/include/TFEL/Material/IsotropicPlasticity.ixx \ + /usr/local/include/TFEL/Material/Lame.hxx \ + /usr/local/include/TFEL/Material/Hosford1972YieldCriterion.hxx \ + /usr/local/include/TFEL/Material/Hosford1972YieldCriterion.ixx \ + /usr/local/include/TFEL/Material/LogarithmicStrainComputeAxialStrainIncrementElasticPrediction.hxx \ + /usr/local/include/TFEL/Material/LogarithmicStrainComputeAxialStrainIncrementElasticPrediction.ixx \ ../include/TFEL/Material/LogarithmicStrainPlasticityBehaviourData.hxx \ /usr/include/c++/8/sstream /usr/include/c++/8/bits/sstream.tcc \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorConceptIO.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrixIO.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2ConceptIO.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/State.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/Types.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/Types.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/State.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/BehaviourData.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/BehaviourData.h \ + /usr/local/include/TFEL/Math/Stensor/StensorConceptIO.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrixIO.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2ConceptIO.hxx \ + /usr/local/include/MFront/GenericBehaviour/State.hxx \ + /usr/local/include/MFront/GenericBehaviour/Types.hxx \ + /usr/local/include/MFront/GenericBehaviour/Types.h \ + /usr/local/include/MFront/GenericBehaviour/State.h \ + /usr/local/include/MFront/GenericBehaviour/BehaviourData.hxx \ + /usr/local/include/MFront/GenericBehaviour/BehaviourData.h \ ../include/TFEL/Material/LogarithmicStrainPlasticityIntegrationData.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/Integrate.hxx \ + /usr/local/include/MFront/GenericBehaviour/Integrate.hxx \ ../include/MFront/GenericBehaviour/LogarithmicStrainPlasticity-generic.hxx diff --git a/materials/src/LogarithmicStrainPlasticity.cxx b/materials/src/LogarithmicStrainPlasticity.cxx index 26c7c73..f20901a 100644 --- a/materials/src/LogarithmicStrainPlasticity.cxx +++ b/materials/src/LogarithmicStrainPlasticity.cxx @@ -1,7 +1,7 @@ /*! * \file LogarithmicStrainPlasticity.cxx * \brief this file implements the LogarithmicStrainPlasticity Behaviour. -* File generated by tfel version 3.3.0-dev +* File generated by tfel version 3.3.0 * \author Helfer Thomas * \date 5 / 12 / 13 */ diff --git a/materials/src/LogarithmicStrainPlasticity.d b/materials/src/LogarithmicStrainPlasticity.d index bc3ac81..d3ef3f3 100644 --- a/materials/src/LogarithmicStrainPlasticity.d +++ b/materials/src/LogarithmicStrainPlasticity.d @@ -143,12 +143,11 @@ LogarithmicStrainPlasticity.o LogarithmicStrainPlasticity.d : LogarithmicStrainP /usr/include/c++/8/bits/codecvt.h \ /usr/include/x86_64-linux-gnu/c++/8/bits/basic_file.h \ /usr/include/x86_64-linux-gnu/c++/8/bits/c++io.h \ - /usr/include/c++/8/bits/fstream.tcc \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Raise.hxx \ + /usr/include/c++/8/bits/fstream.tcc /usr/local/include/TFEL/Raise.hxx \ /usr/include/c++/8/utility /usr/include/c++/8/bits/stl_relops.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/TFELConfig.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/TFEL_MATH_Config.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Raise.ixx \ + /usr/local/include/TFEL/Config/TFELConfig.hxx \ + /usr/local/include/TFEL/Config/TFEL_MATH_Config.hxx \ + /usr/local/include/TFEL/Raise.ixx \ ../include/TFEL/Material/LogarithmicStrainPlasticityBehaviourData.hxx \ /usr/include/c++/8/limits /usr/include/c++/8/iostream \ /usr/include/c++/8/algorithm /usr/include/c++/8/bits/stl_algo.h \ @@ -156,40 +155,38 @@ LogarithmicStrainPlasticity.o LogarithmicStrainPlasticity.d : LogarithmicStrainP /usr/include/c++/8/bits/stl_heap.h /usr/include/c++/8/bits/stl_tempbuf.h \ /usr/include/c++/8/bits/stl_construct.h \ /usr/include/c++/8/bits/uniform_int_dist.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/PhysicalConstants.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/TFELTypes.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/qt.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/tvector.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/tmatrix.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/BaseType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/Complex.hxx \ + /usr/local/include/TFEL/PhysicalConstants.hxx \ + /usr/local/include/TFEL/Config/TFELTypes.hxx \ + /usr/local/include/TFEL/Math/Forward/qt.hxx \ + /usr/local/include/TFEL/Math/Forward/tvector.hxx \ + /usr/local/include/TFEL/Math/Forward/tmatrix.hxx \ + /usr/local/include/TFEL/TypeTraits/BaseType.hxx \ + /usr/local/include/TFEL/Math/Forward/Complex.hxx \ /usr/include/c++/8/ciso646 \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/tensor.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/stensor.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/t2tost2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/st2tost2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorSizeToDime.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorSizeToDime.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/TFELTypesInternals.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/PositionType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/tvector.hxx \ - /usr/include/c++/8/cstddef /usr/include/c++/8/iterator \ - /usr/include/c++/8/bits/stream_iterator.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/StaticAssert.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Macros.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsAssignableTo.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/Promote.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/Promote/Promote.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/RealPartType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/InvalidType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsSafelyReinterpretCastableTo.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/copy.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsRandomAccessIterator.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/fsarray.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/fsarray.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/Abs.hxx \ - /usr/include/c++/8/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/local/include/TFEL/Math/Forward/tensor.hxx \ + /usr/local/include/TFEL/Math/Forward/stensor.hxx \ + /usr/local/include/TFEL/Math/Forward/t2tost2.hxx \ + /usr/local/include/TFEL/Math/Forward/st2tost2.hxx \ + /usr/local/include/TFEL/Math/Stensor/StensorSizeToDime.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorSizeToDime.hxx \ + /usr/local/include/TFEL/Config/Internals/TFELTypesInternals.hxx \ + /usr/local/include/TFEL/Config/Internals/PositionType.hxx \ + /usr/local/include/TFEL/Math/tvector.hxx /usr/include/c++/8/cstddef \ + /usr/include/c++/8/iterator /usr/include/c++/8/bits/stream_iterator.h \ + /usr/local/include/TFEL/Metaprogramming/StaticAssert.hxx \ + /usr/local/include/TFEL/Macros.hxx \ + /usr/local/include/TFEL/TypeTraits/IsAssignableTo.hxx \ + /usr/local/include/TFEL/TypeTraits/Promote.hxx \ + /usr/local/include/TFEL/TypeTraits/Promote/Promote.ixx \ + /usr/local/include/TFEL/TypeTraits/RealPartType.hxx \ + /usr/local/include/TFEL/Metaprogramming/InvalidType.hxx \ + /usr/local/include/TFEL/TypeTraits/IsSafelyReinterpretCastableTo.hxx \ + /usr/local/include/TFEL/FSAlgorithm/copy.hxx \ + /usr/local/include/TFEL/TypeTraits/IsRandomAccessIterator.hxx \ + /usr/local/include/TFEL/Math/fsarray.hxx \ + /usr/local/include/TFEL/Math/General/fsarray.ixx \ + /usr/local/include/TFEL/Math/General/Abs.hxx /usr/include/c++/8/cmath \ + /usr/include/math.h /usr/include/x86_64-linux-gnu/bits/math-vector.h \ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ @@ -203,227 +200,218 @@ LogarithmicStrainPlasticity.o LogarithmicStrainPlasticity.d : LogarithmicStrainP /usr/include/c++/8/array /usr/include/c++/8/bits/uses_allocator.h \ /usr/include/c++/8/bits/invoke.h /usr/include/c++/8/bits/refwrap.h \ /usr/include/c++/8/bits/std_function.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/AbsType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsFundamentalNumericType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/Abs.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/BasicOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsScalar.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsComplex.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsUnaryOperator.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ComputeBinaryResult.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsInvalid.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ComputeObjectTag.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ComputeObjectTag.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ComputeUnaryResult.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/UnaryResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/EmptyRunTimeProperties.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ConceptRebind.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/VectorConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorConcept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/Implements.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ExpressionTemplates/Expr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/ResultOf.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/IsConstCallable.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ExpressionTemplates/StandardOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorVectorDotProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/RunTimeCheck.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/MathException.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Exception/TFELException.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorConceptOperations.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/TinyVectorFromTinyVectorView.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/VectorUtilities.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/tvector.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/FSAlgorithm.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/loop.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/fill.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/equal.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/transform.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/for_each.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/swap_ranges.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/generate.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/min_element.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/max_element.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/accumulate.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/inner_product.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/FSAlgorithm/iota.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/DotProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Vector/tvectorResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/Unit.hxx \ - /usr/include/c++/8/ratio \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/Unit.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/SpatialGradType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/InvJacobianType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/tmatrix.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/MatrixConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/MatrixConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/MatrixConcept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/MatrixConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/power.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/power.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_row_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_row_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_row_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_row_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_column_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_column_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_column_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_column_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_submatrix_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_submatrix_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_submatrix_view.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix_const_submatrix_view.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrix.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/AbsCompare.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/MatrixUtilities.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrixResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/TVectorTMatrixExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ObjectObjectRandomAccessConstIterator.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/TMatrixTVectorExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/JacobianType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/TemperatureGradientType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/HeatFluxVectorType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Config/Internals/ThermalConductivityMatrixType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/TypeTraits/IsReal.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/IEEE754.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/IEEE754.ixx \ + /usr/local/include/TFEL/TypeTraits/AbsType.hxx \ + /usr/local/include/TFEL/TypeTraits/IsFundamentalNumericType.hxx \ + /usr/local/include/TFEL/Math/General/Abs.ixx \ + /usr/local/include/TFEL/Math/General/BasicOperations.hxx \ + /usr/local/include/TFEL/TypeTraits/IsScalar.hxx \ + /usr/local/include/TFEL/TypeTraits/IsComplex.hxx \ + /usr/local/include/TFEL/TypeTraits/IsUnaryOperator.hxx \ + /usr/local/include/TFEL/Math/General/ComputeBinaryResult.hxx \ + /usr/local/include/TFEL/Math/General/ResultType.hxx \ + /usr/local/include/TFEL/TypeTraits/IsInvalid.hxx \ + /usr/local/include/TFEL/Math/General/ComputeObjectTag.hxx \ + /usr/local/include/TFEL/Math/General/ComputeObjectTag.ixx \ + /usr/local/include/TFEL/Math/General/ComputeUnaryResult.hxx \ + /usr/local/include/TFEL/Math/General/UnaryResultType.hxx \ + /usr/local/include/TFEL/Math/General/EmptyRunTimeProperties.hxx \ + /usr/local/include/TFEL/Math/Vector/VectorConcept.hxx \ + /usr/local/include/TFEL/Math/General/ConceptRebind.hxx \ + /usr/local/include/TFEL/Math/Forward/VectorConcept.hxx \ + /usr/local/include/TFEL/Math/Vector/VectorConcept.ixx \ + /usr/local/include/TFEL/Math/Vector/VectorConceptOperations.hxx \ + /usr/local/include/TFEL/Metaprogramming/Implements.hxx \ + /usr/local/include/TFEL/Math/ExpressionTemplates/Expr.hxx \ + /usr/local/include/TFEL/Metaprogramming/ResultOf.hxx \ + /usr/local/include/TFEL/Metaprogramming/IsConstCallable.hxx \ + /usr/local/include/TFEL/Math/ExpressionTemplates/StandardOperations.hxx \ + /usr/local/include/TFEL/Math/Vector/VectorVectorDotProduct.hxx \ + /usr/local/include/TFEL/Math/General/RunTimeCheck.hxx \ + /usr/local/include/TFEL/Math/MathException.hxx \ + /usr/local/include/TFEL/Exception/TFELException.hxx \ + /usr/local/include/TFEL/Math/Vector/VectorConceptOperations.ixx \ + /usr/local/include/TFEL/Math/Vector/TinyVectorFromTinyVectorView.hxx \ + /usr/local/include/TFEL/Math/Vector/VectorUtilities.hxx \ + /usr/local/include/TFEL/Math/Vector/tvector.ixx \ + /usr/local/include/TFEL/FSAlgorithm/FSAlgorithm.hxx \ + /usr/local/include/TFEL/FSAlgorithm/loop.hxx \ + /usr/local/include/TFEL/FSAlgorithm/fill.hxx \ + /usr/local/include/TFEL/FSAlgorithm/equal.hxx \ + /usr/local/include/TFEL/FSAlgorithm/transform.hxx \ + /usr/local/include/TFEL/FSAlgorithm/for_each.hxx \ + /usr/local/include/TFEL/FSAlgorithm/swap_ranges.hxx \ + /usr/local/include/TFEL/FSAlgorithm/generate.hxx \ + /usr/local/include/TFEL/FSAlgorithm/min_element.hxx \ + /usr/local/include/TFEL/FSAlgorithm/max_element.hxx \ + /usr/local/include/TFEL/FSAlgorithm/accumulate.hxx \ + /usr/local/include/TFEL/FSAlgorithm/inner_product.hxx \ + /usr/local/include/TFEL/FSAlgorithm/iota.hxx \ + /usr/local/include/TFEL/Math/General/DotProduct.hxx \ + /usr/local/include/TFEL/Math/Vector/tvectorResultType.hxx \ + /usr/local/include/TFEL/Math/Quantity/Unit.hxx /usr/include/c++/8/ratio \ + /usr/local/include/TFEL/Math/Quantity/Unit.ixx \ + /usr/local/include/TFEL/Config/Internals/SpatialGradType.hxx \ + /usr/local/include/TFEL/Config/Internals/InvJacobianType.hxx \ + /usr/local/include/TFEL/Math/tmatrix.hxx \ + /usr/local/include/TFEL/Math/Matrix/MatrixConcept.hxx \ + /usr/local/include/TFEL/Math/Forward/MatrixConcept.hxx \ + /usr/local/include/TFEL/Math/Matrix/MatrixConcept.ixx \ + /usr/local/include/TFEL/Math/Matrix/MatrixConceptOperations.hxx \ + /usr/local/include/TFEL/Math/power.hxx \ + /usr/local/include/TFEL/Math/power.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_row_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_row_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_row_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_row_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_column_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_column_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_column_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_column_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_submatrix_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_submatrix_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_submatrix_view.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix_const_submatrix_view.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrix.ixx \ + /usr/local/include/TFEL/Math/General/AbsCompare.hxx \ + /usr/local/include/TFEL/Math/Matrix/MatrixUtilities.hxx \ + /usr/local/include/TFEL/Math/Matrix/MatrixUtilities.ixx \ + /usr/local/include/TFEL/Math/Matrix/tmatrixResultType.hxx \ + /usr/local/include/TFEL/Math/Matrix/TVectorTMatrixExpr.hxx \ + /usr/local/include/TFEL/Math/General/ObjectObjectRandomAccessConstIterator.hxx \ + /usr/local/include/TFEL/Math/Matrix/TMatrixTVectorExpr.hxx \ + /usr/local/include/TFEL/Config/Internals/JacobianType.hxx \ + /usr/local/include/TFEL/Config/Internals/TemperatureGradientType.hxx \ + /usr/local/include/TFEL/Config/Internals/HeatFluxVectorType.hxx \ + /usr/local/include/TFEL/Config/Internals/ThermalConductivityMatrixType.hxx \ + /usr/local/include/TFEL/TypeTraits/IsReal.hxx \ + /usr/local/include/TFEL/Math/General/IEEE754.hxx \ + /usr/local/include/TFEL/Math/General/IEEE754.ixx \ /usr/include/c++/8/cfloat \ /usr/lib/gcc/x86_64-linux-gnu/8/include/float.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/stensor.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2Concept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/TensorConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2Concept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2TransposeExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/ST2toST2Concept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2ConceptPushForward.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/MathConstants.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/EmptyClass.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/ConstExprMathFunctions.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorConcept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorConcept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorTransposeExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/TensorConcept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Tensor/MatrixViewFromTensor.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorConceptOperations.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/stensor.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/SymmetricStensorProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/SymmetricStensorProduct.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorImport.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorExport.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorExport.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorChangeBasis.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorInvert.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorDeterminant.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/BuildStensorFromMatrix.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/BuildStensorFromVectorDiadicProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/BuildStensorFromVectorsSymmetricDiadicProduct.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/BuildStensorFromEigenValuesAndVectors.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorEigenSolver.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/FSESSymmetricEigenSolver.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/FSESSymmetricEigenSolver.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevc3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevc3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/Utilities.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/Utilities.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevv3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevv3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/GteSymmetricEigenSolver.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/GteSymmetricEigenSolver.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorComputeEigenValues.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/CubicRoots.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorComputeEigenVectors.hxx \ + /usr/local/include/TFEL/Math/stensor.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2Concept.hxx \ + /usr/local/include/TFEL/Math/Forward/TensorConcept.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2Concept.ixx \ + /usr/local/include/TFEL/Math/LU/LUDecomp.hxx \ + /usr/local/include/TFEL/Math/LU/LUException.hxx \ + /usr/local/include/TFEL/Math/LU/LUDecomp.ixx \ + /usr/local/include/TFEL/Math/LU/TinyPermutation.hxx \ + /usr/local/include/TFEL/Math/LU/TinyPermutation.ixx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2TransposeExpr.hxx \ + /usr/local/include/TFEL/Math/Forward/ST2toST2Concept.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2ConceptPushForward.ixx \ + /usr/local/include/TFEL/Math/General/MathConstants.hxx \ + /usr/local/include/TFEL/Metaprogramming/EmptyClass.hxx \ + /usr/local/include/TFEL/Math/General/ConstExprMathFunctions.hxx \ + /usr/local/include/TFEL/Math/Stensor/StensorConcept.hxx \ + /usr/local/include/TFEL/Math/Stensor/StensorConcept.ixx \ + /usr/local/include/TFEL/Math/Stensor/StensorConceptOperations.hxx \ + /usr/local/include/TFEL/Math/Stensor/StensorProduct.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorConcept.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorTransposeExpr.hxx \ + /usr/local/include/TFEL/Math/Tensor/TensorConcept.ixx \ + /usr/local/include/TFEL/Math/Tensor/MatrixViewFromTensor.hxx \ + /usr/local/include/TFEL/Math/Stensor/StensorConceptOperations.ixx \ + /usr/local/include/TFEL/Math/Stensor/stensor.ixx \ + /usr/local/include/TFEL/Math/Stensor/SymmetricStensorProduct.hxx \ + /usr/local/include/TFEL/Math/Stensor/SymmetricStensorProduct.ixx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorImport.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorExport.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorExport.ixx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorChangeBasis.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorInvert.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorDeterminant.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/BuildStensorFromMatrix.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/BuildStensorFromVectorDiadicProduct.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/BuildStensorFromVectorsSymmetricDiadicProduct.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/BuildStensorFromEigenValuesAndVectors.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorEigenSolver.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/FSESSymmetricEigenSolver.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/FSESSymmetricEigenSolver.ixx \ + /usr/local/include/FSES/syevc3.hxx /usr/local/include/FSES/syevc3.ixx \ + /usr/local/include/FSES/Utilities.hxx \ + /usr/local/include/FSES/Utilities.ixx /usr/local/include/FSES/syevv3.hxx \ + /usr/local/include/FSES/syevv3.ixx \ + /usr/local/include/TFEL/Math/Stensor/Internals/GteSymmetricEigenSolver.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/GteSymmetricEigenSolver.ixx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorComputeEigenValues.hxx \ + /usr/local/include/TFEL/Math/General/CubicRoots.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorComputeEigenVectors.hxx \ /usr/include/c++/8/cassert /usr/include/assert.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevj3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevj3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevq3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevq3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/sytrd3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/sytrd3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevd3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevd3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syev2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syev2.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/slvsec3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/slvsec3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevh3.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/FSES/syevh3.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/SortEigenValues.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/SortEigenVectors.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorComputeEigenValuesDerivatives.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorComputeEigenVectorsDerivatives.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/Internals/StensorComputeIsotropicFunctionDerivative.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/stensorResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/DecompositionInPositiveAndNegativeParts.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/DecompositionInPositiveAndNegativeParts.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Stensor/StensorConceptIO.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/tmatrixIO.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/st2tost2.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/T2toST2Concept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Forward/T2toST2Concept.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/T2toST2/T2toST2Concept.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2ConceptOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2StensorProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/StensorST2toST2ProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2ST2toST2ProductExpr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/StensorSquareDerivative.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/st2tost2.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/General/BaseCast.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/TinyMatrixInvert.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/TinyMatrixSolve.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/TinyPermutation.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/TinyPermutation.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/LUException.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/TinyMatrixSolve.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/LUDecomp.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/LU/LUDecomp.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Matrix/TinyMatrixInvert.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ConvertT2toST2ToST2toST2Expr.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/BuildFromRotationMatrix.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/StensorSymmetricProductDerivative.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/SymmetricStensorProductDerivative.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/SymmetricStensorProductDerivative.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ChangeBasis.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/st2tost2ResultType.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/ST2toST2/ST2toST2ConceptIO.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/ModellingHypothesis.hxx \ + /usr/local/include/FSES/syevj3.hxx /usr/local/include/FSES/syevj3.ixx \ + /usr/local/include/FSES/syevq3.hxx /usr/local/include/FSES/syevq3.ixx \ + /usr/local/include/FSES/sytrd3.hxx /usr/local/include/FSES/sytrd3.ixx \ + /usr/local/include/FSES/syevd3.hxx /usr/local/include/FSES/syevd3.ixx \ + /usr/local/include/FSES/syev2.hxx /usr/local/include/FSES/syev2.ixx \ + /usr/local/include/FSES/slvsec3.hxx /usr/local/include/FSES/slvsec3.ixx \ + /usr/local/include/FSES/syevh3.hxx /usr/local/include/FSES/syevh3.ixx \ + /usr/local/include/TFEL/Math/Stensor/Internals/SortEigenValues.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/SortEigenVectors.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorComputeEigenValuesDerivatives.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorComputeEigenVectorsDerivatives.hxx \ + /usr/local/include/TFEL/Math/Stensor/Internals/StensorComputeIsotropicFunctionDerivative.hxx \ + /usr/local/include/TFEL/Math/Stensor/stensorResultType.hxx \ + /usr/local/include/TFEL/Math/Stensor/DecompositionInPositiveAndNegativeParts.hxx \ + /usr/local/include/TFEL/Math/Stensor/DecompositionInPositiveAndNegativeParts.ixx \ + /usr/local/include/TFEL/Math/Stensor/StensorConceptIO.hxx \ + /usr/local/include/TFEL/Math/Matrix/tmatrixIO.hxx \ + /usr/local/include/TFEL/Math/st2tost2.hxx \ + /usr/local/include/TFEL/Math/T2toST2/T2toST2Concept.hxx \ + /usr/local/include/TFEL/Math/Forward/T2toST2Concept.hxx \ + /usr/local/include/TFEL/Math/T2toST2/T2toST2Concept.ixx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2ConceptOperations.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2StensorProductExpr.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/StensorST2toST2ProductExpr.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2ST2toST2ProductExpr.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/StensorSquareDerivative.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/st2tost2.ixx \ + /usr/local/include/TFEL/Math/General/BaseCast.hxx \ + /usr/local/include/TFEL/Math/TinyMatrixInvert.hxx \ + /usr/local/include/TFEL/Math/TinyMatrixSolve.hxx \ + /usr/local/include/TFEL/Math/LU/TinyMatrixSolve.ixx \ + /usr/local/include/TFEL/Math/Matrix/TinyMatrixInvert.ixx \ + /usr/local/include/TFEL/Math/ST2toST2/ConvertT2toST2ToST2toST2Expr.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/BuildFromRotationMatrix.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/StensorSymmetricProductDerivative.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/SymmetricStensorProductDerivative.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/SymmetricStensorProductDerivative.ixx \ + /usr/local/include/TFEL/Math/ST2toST2/ChangeBasis.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/st2tost2ResultType.hxx \ + /usr/local/include/TFEL/Math/ST2toST2/ST2toST2ConceptIO.hxx \ + /usr/local/include/TFEL/Material/ModellingHypothesis.hxx \ /usr/include/c++/8/vector /usr/include/c++/8/bits/stl_uninitialized.h \ /usr/include/c++/8/bits/stl_vector.h \ /usr/include/c++/8/bits/stl_bvector.h /usr/include/c++/8/bits/vector.tcc \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/State.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/Types.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/Types.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/State.h \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/BehaviourData.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/MFront/GenericBehaviour/BehaviourData.h \ + /usr/local/include/MFront/GenericBehaviour/State.hxx \ + /usr/local/include/MFront/GenericBehaviour/Types.hxx \ + /usr/local/include/MFront/GenericBehaviour/Types.h \ + /usr/local/include/MFront/GenericBehaviour/State.h \ + /usr/local/include/MFront/GenericBehaviour/BehaviourData.hxx \ + /usr/local/include/MFront/GenericBehaviour/BehaviourData.h \ ../include/TFEL/Material/LogarithmicStrainPlasticityIntegrationData.hxx \ ../include/TFEL/Material/LogarithmicStrainPlasticity.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/MaterialException.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/MechanicalBehaviour.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/FiniteStrainBehaviourTangentOperatorBase.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/MechanicalBehaviourTraits.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/OutOfBoundsPolicy.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/BoundsCheck.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/qt.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/TypeList.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/TypeList.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/Forward/TypeList.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/IsSubClassOf.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Metaprogramming/GenerateTypeList.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qtLimits.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qtSpecific.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qtSamples.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qt.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qtOperations.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Math/Quantity/qtOperations.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/IsotropicPlasticity.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/IsotropicPlasticity.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/Lame.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/Hosford1972YieldCriterion.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/Hosford1972YieldCriterion.ixx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/LogarithmicStrainComputeAxialStrainIncrementElasticPrediction.hxx \ - /home/bleyerj/Fenics/codes/tfel/master/install-766c2b2f3f01e84569672a7a633b074a987c805c/include/TFEL/Material/LogarithmicStrainComputeAxialStrainIncrementElasticPrediction.ixx + /usr/local/include/TFEL/Material/MaterialException.hxx \ + /usr/local/include/TFEL/Material/MechanicalBehaviour.hxx \ + /usr/local/include/TFEL/Material/FiniteStrainBehaviourTangentOperatorBase.hxx \ + /usr/local/include/TFEL/Material/MechanicalBehaviourTraits.hxx \ + /usr/local/include/TFEL/Material/OutOfBoundsPolicy.hxx \ + /usr/local/include/TFEL/Material/BoundsCheck.hxx \ + /usr/local/include/TFEL/Math/qt.hxx \ + /usr/local/include/TFEL/Metaprogramming/TypeList.hxx \ + /usr/local/include/TFEL/Metaprogramming/TypeList.ixx \ + /usr/local/include/TFEL/Metaprogramming/Forward/TypeList.hxx \ + /usr/local/include/TFEL/Metaprogramming/IsSubClassOf.hxx \ + /usr/local/include/TFEL/Metaprogramming/GenerateTypeList.hxx \ + /usr/local/include/TFEL/Math/Quantity/qtLimits.hxx \ + /usr/local/include/TFEL/Math/Quantity/qtSpecific.hxx \ + /usr/local/include/TFEL/Math/Quantity/qtSamples.hxx \ + /usr/local/include/TFEL/Math/Quantity/qt.ixx \ + /usr/local/include/TFEL/Math/Quantity/qtOperations.hxx \ + /usr/local/include/TFEL/Math/Quantity/qtOperations.ixx \ + /usr/local/include/TFEL/Material/IsotropicPlasticity.hxx \ + /usr/local/include/TFEL/Material/IsotropicPlasticity.ixx \ + /usr/local/include/TFEL/Material/Lame.hxx \ + /usr/local/include/TFEL/Material/Hosford1972YieldCriterion.hxx \ + /usr/local/include/TFEL/Material/Hosford1972YieldCriterion.ixx \ + /usr/local/include/TFEL/Material/LogarithmicStrainComputeAxialStrainIncrementElasticPrediction.hxx \ + /usr/local/include/TFEL/Material/LogarithmicStrainComputeAxialStrainIncrementElasticPrediction.ixx diff --git a/materials/src/Makefile.mfront b/materials/src/Makefile.mfront index 4ff814a..be7355d 100644 --- a/materials/src/Makefile.mfront +++ b/materials/src/Makefile.mfront @@ -1,6 +1,6 @@ # Makefile generated by mfront. # tfel -# Version : 3.3.0-dev +# Version : 3.3.0 # Compiled with on - # Please submit bug at tfel-contact@cea.fr @@ -22,7 +22,7 @@ makefiles = $(makefiles2) all : libBehaviour.so -libBehaviour.so : LogarithmicStrainPlasticity-generic.o LogarithmicStrainPlasticity.o IsotropicLinearHardeningPlasticity-generic.o IsotropicLinearHardeningPlasticity.o +libBehaviour.so : IsotropicLinearHardeningPlasticity-generic.o IsotropicLinearHardeningPlasticity.o LogarithmicStrainPlasticity-generic.o LogarithmicStrainPlasticity.o @$(CXX) -shared $^ -o $@ -L"$(strip $(shell tfel-config --library-path))" $(patsubst %,-l%,$(shell tfel-config --library-dependency --material --mfront-profiling --physical-constants)) install : diff --git a/materials/src/targets.lst b/materials/src/targets.lst index b768bb7..cb48aaa 100644 --- a/materials/src/targets.lst +++ b/materials/src/targets.lst @@ -6,10 +6,10 @@ prefix : "lib"; suffix : "so"; install_path : ""; sources : { -"LogarithmicStrainPlasticity-generic.cxx", -"LogarithmicStrainPlasticity.cxx", "IsotropicLinearHardeningPlasticity-generic.cxx", -"IsotropicLinearHardeningPlasticity.cxx" +"IsotropicLinearHardeningPlasticity.cxx", +"LogarithmicStrainPlasticity-generic.cxx", +"LogarithmicStrainPlasticity.cxx" }; cppflags : { "$(shell tfel-config --cppflags --compiler-flags)" @@ -24,26 +24,26 @@ link_libraries : { "$(shell tfel-config --library-dependency --material --mfront-profiling --physical-constants)" }; epts : { -"LogarithmicStrainPlasticity_AxisymmetricalGeneralisedPlaneStrain", -"LogarithmicStrainPlasticity_Axisymmetrical", -"LogarithmicStrainPlasticity_PlaneStrain", -"LogarithmicStrainPlasticity_GeneralisedPlaneStrain", -"LogarithmicStrainPlasticity_Tridimensional", "IsotropicLinearHardeningPlasticity_AxisymmetricalGeneralisedPlaneStrain", "IsotropicLinearHardeningPlasticity_Axisymmetrical", "IsotropicLinearHardeningPlasticity_PlaneStrain", "IsotropicLinearHardeningPlasticity_GeneralisedPlaneStrain", -"IsotropicLinearHardeningPlasticity_Tridimensional" +"IsotropicLinearHardeningPlasticity_Tridimensional", +"LogarithmicStrainPlasticity_AxisymmetricalGeneralisedPlaneStrain", +"LogarithmicStrainPlasticity_Axisymmetrical", +"LogarithmicStrainPlasticity_PlaneStrain", +"LogarithmicStrainPlasticity_GeneralisedPlaneStrain", +"LogarithmicStrainPlasticity_Tridimensional" }; }; headers : { -"MFront/GenericBehaviour/LogarithmicStrainPlasticity-generic.hxx", -"TFEL/Material/LogarithmicStrainPlasticity.hxx", -"TFEL/Material/LogarithmicStrainPlasticityBehaviourData.hxx", -"TFEL/Material/LogarithmicStrainPlasticityIntegrationData.hxx", "MFront/GenericBehaviour/IsotropicLinearHardeningPlasticity-generic.hxx", "TFEL/Material/IsotropicLinearHardeningPlasticity.hxx", "TFEL/Material/IsotropicLinearHardeningPlasticityBehaviourData.hxx", -"TFEL/Material/IsotropicLinearHardeningPlasticityIntegrationData.hxx" +"TFEL/Material/IsotropicLinearHardeningPlasticityIntegrationData.hxx", +"MFront/GenericBehaviour/LogarithmicStrainPlasticity-generic.hxx", +"TFEL/Material/LogarithmicStrainPlasticity.hxx", +"TFEL/Material/LogarithmicStrainPlasticityBehaviourData.hxx", +"TFEL/Material/LogarithmicStrainPlasticityIntegrationData.hxx" }; }; diff --git a/mfront_wrapper/__init__.py b/mfront_wrapper/__init__.py new file mode 100644 index 0000000..6cda9d2 --- /dev/null +++ b/mfront_wrapper/__init__.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Created on Fri Feb 21 16:33:46 2020 + +@author: bleyerj +""" +from dolfin import * +parameters["form_compiler"]["representation"] = 'quadrature' +import warnings +from ffc.quadrature.deprecation import QuadratureRepresentationDeprecationWarning +warnings.simplefilter("once", QuadratureRepresentationDeprecationWarning) + +from .nonlinear_material import MFrontNonlinearMaterial +from .nonlinear_problem import MFrontNonlinearProblem \ No newline at end of file diff --git a/mfront_wrapper/mfront_wrapper.py b/mfront_wrapper/mfront_wrapper.py index f73949e..281bb60 100644 --- a/mfront_wrapper/mfront_wrapper.py +++ b/mfront_wrapper/mfront_wrapper.py @@ -1,102 +1,10 @@ -from dolfin import * -import ufl import mgis.behaviour as mgis_bv -parameters["form_compiler"]["representation"] = 'quadrature' -import warnings -from ffc.quadrature.deprecation import QuadratureRepresentationDeprecationWarning -warnings.simplefilter("once", QuadratureRepresentationDeprecationWarning) - - mgis_hypothesis = {"plane_strain": mgis_bv.Hypothesis.PlaneStrain, "plane_stress": mgis_bv.Hypothesis.PlaneStress, "3d": mgis_bv.Hypothesis.Tridimensional, "axisymmetric": mgis_bv.Hypothesis.Axisymmetrical} -def local_project(v, V, dx, u=None): - """ - projects v on V with custom quadrature scheme dedicated to - FunctionSpaces V of `Quadrature` type - - if u is provided, result is appended to u - """ - dv = TrialFunction(V) - v_ = TestFunction(V) - a_proj = inner(dv, v_)*dx - b_proj = inner(v, v_)*dx - solver = LocalSolver(a_proj, b_proj) - solver.factorize() - if u is None: - u = Function(V) - solver.solve_local_rhs(u) - return u - else: - solver.solve_local_rhs(u) - return - -def symmetric_tensor_to_vector(T, T22=0): - """ Return symmetric tensor components in vector form notation following MFront conventions - T22 can be specified when T is only (2,2)""" - if ufl.shape(T)==(2, 2): - return as_vector([T[0, 0], T[1, 1], T22, sqrt(2)*T[0, 1]]) - elif ufl.shape(T)==(3, 3): - return as_vector([T[0, 0], T[1, 1], T[2, 2], sqrt(2)*T[0, 1], sqrt(2)*T[0, 2], sqrt(2)*T[1, 2]]) - else: - raise NotImplementedError - -def nonsymmetric_tensor_to_vector(T, T22=0): - """ Return nonsymmetric tensor components in vector form notation following MFront conventions - T22 can be specified when T is only (2,2) """ - if ufl.shape(T)==(2, 2): - return as_vector([T[0, 0], T[1, 1], T22, T[0, 1], T[1, 0]]) - elif ufl.shape(T)==(3, 3): - return as_vector([T[0, 0], T[1, 1], T[2, 2], T[0, 1], T[1, 0], T[0, 2], T[2, 0], T[1, 2], T[2, 1]]) - else: - raise NotImplementedError - -def axi_grad(r, v): - """ - Axisymmetric gradient in cylindrical coordinate (er, etheta, ez) for: - * a scalar v(r, z) - * a 2d-vectorial (vr(r,z), vz(r, z)) - * a 3d-vectorial (vr(r,z), 0, vz(r, z)) - """ - if ufl.shape(v)==(3,): - return as_matrix([[v[0].dx(0), -v[1]/r, v[0].dx(1)], - [v[1].dx(0), v[0]/r, v[1].dx(1)], - [v[2].dx(0), 0, v[2].dx(1)]]) - elif ufl.shape(v)==(2,): - return as_matrix([[v[0].dx(0), v[0].dx(1), 0], - [v[1].dx(0), v[1].dx(1), 0], - [0, 0, v[0]/r]]) - elif ufl.shape(v)==(): - return as_vector([v.dx(0), 0, v.dx(1)]) - else: - raise NotImplementedError - -def symmetric_gradient(g): - """ Return symmetric gradient components in vector form""" - return symmetric_tensor_to_vector(sym(g)) - -def transformation_gradient(g): - """ Return transformation gradient components in vector form""" - return nonsymmetric_tensor_to_vector(Identity(v.geometric_dimension())+g, T22=1) - -def gradient(g): - """ Return displacement gradient components in vector form""" - return nonsymmetric_tensor_to_vector(g) - -def get_quadrature_element(cell, degree, dim=0): - if dim == 0 or dim == (): - return FiniteElement("Quadrature", cell, degree=degree, - quad_scheme='default') - elif type(dim) == int or len(dim)==1: - return VectorElement("Quadrature", cell, degree=degree, - dim=dim, quad_scheme='default') - elif type(dim) == tuple: - return TensorElement("Quadrature", cell, degree=degree, shape=dim, quad_scheme='default') - else: - raise ValueError("Wrong shape for dim=", dim) class NonlinearMaterial: def __init__(self, path, name, hypothesis="3d", diff --git a/mfront_wrapper/nonlinear_material.py b/mfront_wrapper/nonlinear_material.py new file mode 100644 index 0000000..5718545 --- /dev/null +++ b/mfront_wrapper/nonlinear_material.py @@ -0,0 +1,33 @@ +import mgis.behaviour as mgis_bv + +mgis_hypothesis = {"plane_strain": mgis_bv.Hypothesis.PlaneStrain, + "plane_stress": mgis_bv.Hypothesis.PlaneStress, + "3d": mgis_bv.Hypothesis.Tridimensional, + "axisymmetric": mgis_bv.Hypothesis.Axisymmetrical} + + +class MFrontNonlinearMaterial: + def __init__(self, path, name, hypothesis="3d", + material_properties={}, external_state_variables={"Temperature": 293.15}): + self.path = path + self.name = name + # Defining the modelling hypothesis + self.hypothesis = mgis_hypothesis[hypothesis] + self.material_properties = material_properties + self.external_state_variables = external_state_variables + # Loading the behaviour + self.behaviour = mgis_bv.load(self.path, self.name, self.hypothesis) + + def set_data_manager(self, ngauss): + # Setting the material data manager + self.data_manager = mgis_bv.MaterialDataManager(self.behaviour, ngauss) + for s in [self.data_manager.s0, self.data_manager.s1]: + for (key, value) in self.material_properties.items(): + mgis_bv.setMaterialProperty(s, key, value) + for (key, value) in self.external_state_variables.items(): + mgis_bv.setExternalStateVariable(s, key, value) + + def get_state_variable_names(self): + return [svar.name for svar in self.behaviour.internal_state_variables] + def get_state_variable_sizes(self): + return [mgis_bv.getVariableSize(svar, self.hypothesis) for svar in self.behaviour.internal_state_variables] \ No newline at end of file diff --git a/mfront_wrapper/nonlinear_problem.py b/mfront_wrapper/nonlinear_problem.py new file mode 100644 index 0000000..b740ece --- /dev/null +++ b/mfront_wrapper/nonlinear_problem.py @@ -0,0 +1,179 @@ +from dolfin import * +from mfront_wrapper.utils import * +import mgis.behaviour as mgis_bv + +class MFrontNonlinearProblem(NonlinearProblem): + def __init__(self, u, material, quadrature_degree=2): + NonlinearProblem.__init__(self) + self.u = u + self.V = self.u.function_space() + self.u_ = TestFunction(self.V) + self.du = TrialFunction(self.V) + self.mesh = self.V.mesh() + self.material = material +# print(self.material.hypothesis) + self.axisymmetric = self.material.hypothesis==mgis_bv.Hypothesis.Axisymmetrical + + self.quadrature_degree = quadrature_degree + self.set_quadrature_function_spaces() + + self.bc = [] + self.dx = Measure("dx", metadata={"quadrature_degree": self.quadrature_degree, + "quadrature_scheme": "default"}) + if self.axisymmetric: + x = SpatialCoordinate(self.mesh) + measure = 2*pi*abs(x[0]) + else: + measure = 1 + + self.initialize_fields() + + # tangent bilinear form + self.a = inner(self.strain_variation(self.du), dot(self.Ct, self.strain_variation(self.u_)))*measure*self.dx + # residual form (internal forces) + self.L = inner(self.strain_variation(self.u_), self.stress)*measure*self.dx + + self.solver = NewtonSolver() + + self.state_variables = [] + + def set_loading(self, Fext): + # adds external forces to residual form + self.L -= ufl.replace(Fext, {self.u: self.u_}) + + def set_quadrature_function_spaces(self): + cell = self.mesh.ufl_cell() + W0e = get_quadrature_element(cell, self.quadrature_degree) + # scalar quadrature space + self.W0 = FunctionSpace(self.mesh, W0e) + # compute Gauss points numbers + self.ngauss = self.W0.dim() + # Set data manager + self.material.set_data_manager(self.ngauss) + self.finite_strain = self.material.behaviour.getBehaviourType()=="StandardFiniteStrainBehaviour" + if self.material.hypothesis == mgis_bv.Hypothesis.Tridimensional: + assert self.u.geometric_dimension()==3, "Conflicting geometric dimension and material hypothesis" + else: + assert self.u.geometric_dimension()==2, "Conflicting geometric dimension and material hypothesis" + # Get strain measure dimension + self.strain_dim = ufl.shape(self.strain_measure(self.u))[0] + # Define quadrature spaces for stress/strain and tangent matrix + Wsige = get_quadrature_element(cell, self.quadrature_degree, self.strain_dim) + # stress/strain quadrature space + self.Wsig = FunctionSpace(self.mesh, Wsige) + Wce = get_quadrature_element(cell, self.quadrature_degree, (self.strain_dim, self.strain_dim)) + # tangent matrix quadrature space + self.WCt = FunctionSpace(self.mesh, Wce) + + def strain_measure(self, v): + """ Strain measure associated with stress measure: + * small strain behaviour: linearized strain tensor epsilon = sym(grad(u)) + * finite strain behaviour: transformation gradient F = Id + grad(u) + """ + if self.axisymmetric: + r = abs(SpatialCoordinate(self.mesh)[0]) + g = axi_grad(r, v) + E = symmetric_tensor_to_vector(sym(g)) + if v.geometric_dimension()==2: + return as_vector([E[i] for i in range(4)]) + else: + g = grad(v) + if self.finite_strain: + return transformation_gradient(g, dim=v.geometric_dimension()) + else: + return symmetric_gradient(g) + + def strain_variation(self, v): + """ Variation of strain measure associated with stress measure: + * small strain behaviour: linearized strain tensor d_epsilon = sym(grad(du)) + * finite strain behaviour: displacement gradient d_F = grad(du) + """ + if self.axisymmetric: + r = abs(SpatialCoordinate(self.mesh)[0]) + g = axi_grad(r, v) + E = symmetric_tensor_to_vector(sym(g)) + if v.geometric_dimension()==2: + return as_vector([E[i] for i in range(4)]) + else: + g = grad(v) + if self.finite_strain: + return gradient(g) + else: + return symmetric_gradient(g) + + def initialize_fields(self): + self.stress = Function(self.Wsig, name="Current stress") + self.strain = Function(self.Wsig, name="Current strain increment") + self.Ct = Function(self.WCt, name="Consistent tangent operator") + + it = mgis_bv.IntegrationType.PredictionWithElasticOperator + mgis_bv.integrate(self.material.data_manager, it, 0, 0, self.material.data_manager.n); + if self.finite_strain: + local_project(self.strain_measure(self.u), self.Wsig, self.dx, self.strain) + # copy the strain values to `MGIS` + self.material.data_manager.s0.gradients[:, :] = self.strain.vector().get_local().reshape((self.material.data_manager.n, self.strain_dim)) + else: + self.Ct.vector().set_local(self.material.data_manager.K.flatten()) + + def update_constitutive_law(self, u): + local_project(self.strain_measure(u), self.Wsig, self.dx, self.strain) + # copy the strain values to `MGIS` + self.material.data_manager.s1.gradients[:, :] = self.strain.vector().get_local().reshape((self.material.data_manager.n, self.strain_dim)) + # integrate the behaviour + it = mgis_bv.IntegrationType.IntegrationWithConsistentTangentOperator + mgis_bv.integrate(self.material.data_manager, it, 0, 0, self.material.data_manager.n); + # getting the stress and consistent tangent operator back to + # the FEniCS world. + if self.finite_strain: + pk1v = self.stress.vector().get_local() + mgis_bv.convertFiniteStrainStress(pk1v, self.material.data_manager, + mgis_bv.FiniteStrainStress.PK1) + self.stress.vector().set_local(pk1v) + Ctv = self.Ct.vector().get_local() + mgis_bv.convertFiniteStrainTangentOperator(Ctv, self.material.data_manager, + mgis_bv.FiniteStrainTangentOperator.DPK1_DF) + self.Ct.vector().set_local(Ctv) + else: + self.stress.vector().set_local(self.material.data_manager.s1.thermodynamic_forces.flatten()) + self.Ct.vector().set_local(self.material.data_manager.K.flatten()) + + sizes = self.material.get_state_variable_sizes() + for (s, i) in self.state_variables: + size = sizes[i] + s.vector().set_local(self.material.data_manager.s1.internal_state_variables[:, i:(i+size)].flatten()) + + def get_state_variable(self, name=None, position=None): + if name is not None: + position = self.material.get_state_variable_names().index(name) + elif position is not None: + name = self.material.get_state_variable_names()[position] + else: + raise ValueError("Name or position of state variable must be specified.") + shape = self.material.get_state_variable_sizes()[position] + We = get_quadrature_element(self.mesh.ufl_cell(), self.quadrature_degree, shape) + W = FunctionSpace(self.mesh, We) + self.state_variables.append([Function(W, name=name), position]) + return self.state_variables[-1][0] + +# def get_state_variable(self, var, name=None, position=None): +# sizes = self.material.get_state_variable_sizes() +# if name is not None: +# position = self.material.get_state_variable_names().index(name) +# size = sizes[position] +## print(position, size) +# var.vector().set_local(self.material.data_manager.s1.internal_state_variables[:, position:(position+size)].flatten()) + + def form(self, A, P, b, x): + self.update_constitutive_law(self.u) + assemble_system(self.a, self.L, A_tensor=A, b_tensor=b, bcs=self.bc, x0=x) + + def F(self,b,x): + pass + + def J(self,A,x): + pass + + def solve(self, x): + self.solver.solve(self, x) + mgis_bv.update(self.material.data_manager) + diff --git a/mfront_wrapper/utils.py b/mfront_wrapper/utils.py new file mode 100644 index 0000000..cbde703 --- /dev/null +++ b/mfront_wrapper/utils.py @@ -0,0 +1,94 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Created on Fri Feb 21 16:35:18 2020 + +@author: bleyerj +""" +from dolfin import * +import ufl + +def local_project(v, V, dx, u=None): + """ + projects v on V with custom quadrature scheme dedicated to + FunctionSpaces V of `Quadrature` type + + if u is provided, result is appended to u + """ + dv = TrialFunction(V) + v_ = TestFunction(V) + a_proj = inner(dv, v_)*dx + b_proj = inner(v, v_)*dx + solver = LocalSolver(a_proj, b_proj) + solver.factorize() + if u is None: + u = Function(V) + solver.solve_local_rhs(u) + return u + else: + solver.solve_local_rhs(u) + return + +def symmetric_tensor_to_vector(T, T22=0): + """ Return symmetric tensor components in vector form notation following MFront conventions + T22 can be specified when T is only (2,2)""" + if ufl.shape(T)==(2, 2): + return as_vector([T[0, 0], T[1, 1], T22, sqrt(2)*T[0, 1]]) + elif ufl.shape(T)==(3, 3): + return as_vector([T[0, 0], T[1, 1], T[2, 2], sqrt(2)*T[0, 1], sqrt(2)*T[0, 2], sqrt(2)*T[1, 2]]) + else: + raise NotImplementedError + +def nonsymmetric_tensor_to_vector(T, T22=0): + """ Return nonsymmetric tensor components in vector form notation following MFront conventions + T22 can be specified when T is only (2,2) """ + if ufl.shape(T)==(2, 2): + return as_vector([T[0, 0], T[1, 1], T22, T[0, 1], T[1, 0]]) + elif ufl.shape(T)==(3, 3): + return as_vector([T[0, 0], T[1, 1], T[2, 2], T[0, 1], T[1, 0], T[0, 2], T[2, 0], T[1, 2], T[2, 1]]) + else: + raise NotImplementedError + +def axi_grad(r, v): + """ + Axisymmetric gradient in cylindrical coordinate (er, etheta, ez) for: + * a scalar v(r, z) + * a 2d-vectorial (vr(r,z), vz(r, z)) + * a 3d-vectorial (vr(r,z), 0, vz(r, z)) + """ + if ufl.shape(v)==(3,): + return as_matrix([[v[0].dx(0), -v[1]/r, v[0].dx(1)], + [v[1].dx(0), v[0]/r, v[1].dx(1)], + [v[2].dx(0), 0, v[2].dx(1)]]) + elif ufl.shape(v)==(2,): + return as_matrix([[v[0].dx(0), v[0].dx(1), 0], + [v[1].dx(0), v[1].dx(1), 0], + [0, 0, v[0]/r]]) + elif ufl.shape(v)==(): + return as_vector([v.dx(0), 0, v.dx(1)]) + else: + raise NotImplementedError + +def symmetric_gradient(g): + """ Return symmetric gradient components in vector form""" + return symmetric_tensor_to_vector(sym(g)) + +def transformation_gradient(g, dim=3): + """ Return transformation gradient components in vector form""" + return nonsymmetric_tensor_to_vector(Identity(dim)+g, T22=1) + +def gradient(g): + """ Return displacement gradient components in vector form""" + return nonsymmetric_tensor_to_vector(g) + +def get_quadrature_element(cell, degree, dim=0): + if dim in [0, 1, (), (0,), (1,)]: + return FiniteElement("Quadrature", cell, degree=degree, + quad_scheme='default') + elif type(dim) == int or len(dim)==1: + return VectorElement("Quadrature", cell, degree=degree, + dim=dim, quad_scheme='default') + elif type(dim) == tuple: + return TensorElement("Quadrature", cell, degree=degree, shape=dim, quad_scheme='default') + else: + raise ValueError("Wrong shape for dim=", dim) \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f59ce8a --- /dev/null +++ b/setup.py @@ -0,0 +1,17 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Setup file for the mfront_wrapper package + +@author: Jeremy Bleyer, Ecole des Ponts ParisTech, +Laboratoire Navier (ENPC,IFSTTAR,CNRS UMR 8205) +@email: jeremy.bleyer@enpc.f +""" + +import setuptools + +setuptools.setup( + name = 'mfront_wrapper', + version = '0.1', + packages = setuptools.find_packages(), +) \ No newline at end of file -- GitLab