1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
if QHULL
optprogs = test_mesh_generation test_mesh_im_level_set crack
optpl = $(top_srcdir)/tests/test_mesh_im_level_set.pl \
$(top_srcdir)/tests/crack.pl
else
optprogs =
optpl =
endif
check_PROGRAMS = \
dynamic_array \
dynamic_tas \
test_int_set \
test_tree_sorted \
poly \
test_small_vector \
test_kdtree \
test_rtree \
test_mesh \
test_slice \
integration \
geo_trans_inv \
test_mat_elem \
test_interpolation \
test_assembly \
test_norm \
test_interpolated_fem \
test_range_basis \
laplacian \
laplacian_with_bricks \
elastostatic \
stokes \
helmholtz \
plate \
nonlinear_elastostatic \
nonlinear_membrane \
schwarz_additive \
$(optprogs) \
plasticity \
plasticity_old_brick \
dynamic_friction \
bilaplacian \
heat_equation \
wave_equation \
cyl_slicer
CLEANFILES = \
laplacian.res laplacian.mesh laplacian.dataelt \
elasto_static.mesh test_mesh.mesh toto.mat test_mat_elem.mesh \
helmholtz.vtk plate.mesh plate.vtk nonlinear_elastostatic.mesh \
nonlinear_elastostatic.mf nonlinear_elastostatic.mfd \
nonlinear_elastostatic.dx nonlinear_elastostatic.vtk \
plasticity.mesh plasticity.U plasticity.sigmabar plasticity.vtk \
plasticity.meshfem plasticity.coef elasto_static_err.vtk \
ii_files/* auto_gmm* dyn*.txt dynamic_friction.data *.sl time FN0 \
nonlinear_elastostatic.U crack.mesh cut.mesh nonlinear_membrane.mfd \
nonlinear_membrane.mesh test_range_basis.mesh nonlinear_membrane.mf \
nonlinear_membrane.vtk feminterpolation.vtk circleslice.vtk
dynamic_array_SOURCES = dynamic_array.cc
dynamic_tas_SOURCES = dynamic_tas.cc
test_small_vector_SOURCES = test_small_vector.cc
test_kdtree_SOURCES = test_kdtree.cc
test_rtree_SOURCES = test_rtree.cc
test_assembly_SOURCES = test_assembly.cc
laplacian_SOURCES = laplacian.cc
laplacian_with_bricks_SOURCES = laplacian_with_bricks.cc
plate_SOURCES = plate.cc
test_interpolation_SOURCES = test_interpolation.cc
elastostatic_SOURCES = elastostatic.cc
stokes_SOURCES = stokes.cc
nonlinear_elastostatic_SOURCES = nonlinear_elastostatic.cc
nonlinear_membrane_SOURCES = nonlinear_membrane.cc
helmholtz_SOURCES = helmholtz.cc
integration_SOURCES = integration.cc
poly_SOURCES = poly.cc
test_mesh_SOURCES = test_mesh.cc
geo_trans_inv_SOURCES = geo_trans_inv.cc
test_int_set_SOURCES = test_int_set.cc
test_interpolated_fem_SOURCES = test_interpolated_fem.cc
test_tree_sorted_SOURCES = test_tree_sorted.cc
test_mat_elem_SOURCES = test_mat_elem.cc
test_slice_SOURCES = test_slice.cc
test_range_basis_SOURCES = test_range_basis.cc
test_norm_SOURCES = test_norm.cc
schwarz_additive_SOURCES = schwarz_additive.cc
plasticity_SOURCES = plasticity.cc
plasticity_old_brick_SOURCES = plasticity_old_brick.cc
if QHULL
test_mesh_generation_SOURCES = test_mesh_generation.cc
test_mesh_im_level_set_SOURCES = test_mesh_im_level_set.cc
crack_SOURCES = crack.cc
endif
dynamic_friction_SOURCES = dynamic_friction.cc
bilaplacian_SOURCES = bilaplacian.cc
heat_equation_SOURCES = heat_equation.cc
wave_equation_SOURCES = wave_equation.cc
cyl_slicer_SOURCES = cyl_slicer.cc
SUPLDFLAGS = @SUPLDFLAGS@
INCLUDES = -I$(top_srcdir)/src -I../src
LDADD = ../src/libgetfem.la -lm $(SUPLDFLAGS) $(MUMPS_LIBS)
TESTS = \
$(top_srcdir)/tests/dynamic_array.pl \
$(top_srcdir)/tests/dynamic_tas.pl \
$(top_srcdir)/tests/test_int_set.pl \
$(top_srcdir)/tests/test_tree_sorted.pl \
$(top_srcdir)/tests/poly.pl \
$(top_srcdir)/tests/test_small_vector.pl \
$(top_srcdir)/tests/test_kdtree.pl \
$(top_srcdir)/tests/test_rtree.pl \
$(top_srcdir)/tests/geo_trans_inv.pl \
$(top_srcdir)/tests/test_norm.pl \
$(top_srcdir)/tests/test_mesh.pl \
$(top_srcdir)/tests/test_interpolation.pl \
$(top_srcdir)/tests/test_mat_elem.pl \
$(top_srcdir)/tests/test_slice.pl \
$(top_srcdir)/tests/integration.pl \
$(top_srcdir)/tests/test_assembly.pl \
$(top_srcdir)/tests/test_interpolated_fem.pl \
$(top_srcdir)/tests/test_range_basis.pl \
$(top_srcdir)/tests/laplacian.pl \
$(top_srcdir)/tests/laplacian_with_bricks.pl \
$(top_srcdir)/tests/elastostatic.pl \
$(top_srcdir)/tests/stokes.pl \
$(top_srcdir)/tests/plate.pl \
$(optpl) \
$(top_srcdir)/tests/nonlinear_elastostatic.pl \
$(top_srcdir)/tests/nonlinear_membrane.pl \
$(top_srcdir)/tests/dynamic_friction.pl \
$(top_srcdir)/tests/plasticity.pl \
$(top_srcdir)/tests/plasticity_old_brick.pl \
$(top_srcdir)/tests/helmholtz.pl \
$(top_srcdir)/tests/schwarz_additive.pl \
$(top_srcdir)/tests/bilaplacian.pl \
$(top_srcdir)/tests/heat_equation.pl \
$(top_srcdir)/tests/wave_equation.pl \
$(top_srcdir)/tests/cyl_slicer.pl \
$(top_srcdir)/tests/make_gmm_test.pl
EXTRA_DIST = \
dynamic_array.pl \
dynamic_tas.pl \
test_small_vector.pl \
test_kdtree.pl \
test_rtree.pl \
test_interpolation.pl \
test_assembly.pl \
laplacian.pl \
laplacian_with_bricks.pl \
elastostatic.pl \
stokes.pl \
helmholtz.pl \
integration.pl \
poly.pl \
test_mesh.pl \
geo_trans_inv.pl \
test_int_set.pl \
test_interpolated_fem.pl \
test_slice.pl \
test_norm.pl \
test_mesh_im_level_set.pl \
test_tree_sorted.pl \
test_mat_elem.pl \
crack.pl \
crack.param \
laplacian.param \
laplacian_with_bricks.param \
test_range_basis.param \
test_range_basis.pl \
bilaplacian.param \
bilaplacian.pl \
plate.param \
plate.pl \
schwarz_additive.pl \
schwarz_additive.param \
elastostatic.param \
stokes.param \
nonlinear_elastostatic.pl \
nonlinear_membrane.pl \
nonlinear_membrane.param \
dynamic_friction.pl \
dynamic_friction.param \
dynamic_friction.net \
plasticity.pl \
plasticity_old_brick.pl \
plasticity.param \
plasticity_old_brick.param \
nonlinear_elastostatic.param \
test_interpolated_fem.param \
geo_trans_inv.param \
heat_equation.pl \
heat_equation.param \
wave_equation.pl \
wave_equation.param \
cyl_slicer.pl \
make_gmm_test.pl \
gmm_torture01_lusolve.cc \
gmm_torture05_mult.cc \
gmm_torture06_mat_mult.cc \
gmm_torture10_qr.cc \
gmm_torture15_sub.cc \
gmm_torture20_iterative_solvers.cc \
meshes/disc_2D_degree3.mesh \
meshes/donut_regulier_72_elements.mesh \
meshes/disc_P2_h0.15.mesh \
meshes/donut_regulier_8_elements_288ddl.mesh \
meshes/disc_P2_h0.25.mesh \
meshes/disc_P2_h0.5.mesh \
meshes/disc_P2_h1.mesh \
meshes/disc_P2_h2.mesh \
meshes/sphere_with_quadratic_tetra_16000_elts.mesh \
meshes/disc_P2_h3.mesh \
meshes/sphere_with_quadratic_tetra_2000_elts.mesh \
meshes/disc_P2_h4.mesh \
meshes/sphere_with_quadratic_tetra_400_elts.mesh \
meshes/disc_P2_h5.5.mesh \
meshes/sphere_with_quadratic_tetra_80_elts.mesh \
meshes/donut_regulier_32_elements.mesh \
meshes/sphere_with_quadratic_tetra_8_elts.mesh \
meshes/donut_regulier_512_elements.mesh
TESTS_ENVIRONMENT = perl
|