Revive port math/freefem++: finite element method application.

PR:		242759
Submitted by:	Kouichi Hirabayashi
This commit is contained in:
Thierry Thomas 2020-11-29 16:28:55 +00:00
parent 49d8f436ff
commit bd8b956487
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=556585
10 changed files with 945 additions and 1 deletions

1
MOVED
View file

@ -788,7 +788,6 @@ devel/p5-MooseX-Policy-SemiAffordanceAccessor|devel/p5-MooseX-SemiAffordanceAcce
www/mediawiki12|www/mediawiki112|2009-08-19|Renamed
lang/gcc42-withgcjawt|lang/gcc42|2009-08-19|Not needed any longer, still an option for the regular lang/gcc ports
math/octave-forge-windows||2009-08-23|Abandoned upstream
math/freefem++||2009-08-23|Has expired: unmaintained and consistently unportable
math/it++||2009-08-23|Has expired: unmaintained and consistently unportable
databases/firebird-client||2009-09-03|Removed: no longer under development
databases/firebird-server||2009-09-03|Removed: no longer under development

View file

@ -269,6 +269,7 @@
SUBDIR += fpc-gmp
SUBDIR += fpc-numlib
SUBDIR += fplll
SUBDIR += freefem++
SUBDIR += fricas
SUBDIR += frobby
SUBDIR += fxt

67
math/freefem++/Makefile Normal file
View file

@ -0,0 +1,67 @@
# Created by: Thierry Thomas <thierry@pompo.net>
# $FreeBSD$
PORTNAME= freefem++
PORTVERSION= 4.6
DISTVERSIONPREFIX= v
CATEGORIES= math science
MAINTAINER= kh@mogami.com
COMMENT= Partial differential equation solver
LICENSE= LGPL3
BUILD_DEPENDS= amk_fft2:cad/scotch \
bash:shells/bash \
gmm++>0:math/gmm++ \
pipe:misc/pipe \
tetgen:math/tetgen
LIB_DEPENDS= libhdf5.so:science/hdf5 \
libamd.so:math/suitesparse \
libarpack.so:math/arpack-ng \
libfftw3.so:math/fftw3 \
libgsl.so:math/gsl \
libipopt.so:math/ipopt \
libmetis.so:math/metis \
libcmumps.so:math/mumps \
libnlopt.so:math/nlopt \
libsuperlu.so:math/superlu \
libsz.so:science/szip
RUN_DEPENDS= bash:shells/bash \
pipe:misc/pipe
USE_GITHUB= yes
GH_ACCOUNT= FreeFem
GH_PROJECT= FreeFem-sources
USES= autoreconf bison blaslapack:openblas compiler:c++11-lib fortran \
gl gmake localbase perl5 pkgconfig shebangfix xorg
SHEBANG_GLOB= ff-pkg-download.in
SHEBANG_FILES= examples/CheckAllEdp ./examples/misc/speedtest.sh
CPPFLAGS+= -I${LOCALBASE}/include/superlu
.if !defined{WITH_DEBUG}
LDFLAGS+= -s
.endif
GNU_CONFIGURE= yes
CONFIGURE_ENV= CNOFLAGS="${CFLAGS}"
CONFIGURE_ARGS= --disable-download \
--without-mpi \
--with-blas=${BLASLIB} \
--with-lapack=${LAPACKLIB}
USE_GL= gl glu glut
OPTIONS_DEFINE= EXAMPLES
OPTIONS_DEFAULT=EXAMPLES
PLIST_SUB= VER=${PORTVERSION}
DATADIR= ${PREFIX}/share/FreeFEM/${PORTVERSION}
TEST_TARGET= check
pre-configure:
${REINPLACE_CMD} -e 's|-llapack|${LAPACKLIB}|' ${WRKSRC}/configure.ac
.include <bsd.port.mk>

3
math/freefem++/distinfo Normal file
View file

@ -0,0 +1,3 @@
TIMESTAMP = 1591981622
SHA256 (FreeFem-FreeFem-sources-v4.6_GH0.tar.gz) = 6c09af8e189fc02214b0e664b679b49832c134e29cf1ede3cab29cf754f6078f
SIZE (FreeFem-FreeFem-sources-v4.6_GH0.tar.gz) = 12387265

View file

@ -0,0 +1,53 @@
--- Makefile.am.orig 2020-04-02 12:11:06 UTC
+++ Makefile.am
@@ -142,20 +142,17 @@ idp/CC.idp
FF_MAC_PREFIX=FreeFem++v$(VERSION)$(ADD_PACKAGE_NAME)
-FF_EXAMPLES_FILES=examples/tutorial/aile.msh \
- examples/tutorial/xyf \
- examples/3d/dodecaedre01.mesh \
- examples/3d/lac-leman-v4.msh \
- examples/load/load.link \
- examples/load/cube.msh \
- examples/load/fig.pgm \
- examples/plugin/lg.pgm \
- examples/mpi/regtests.sh \
- examples/misc/speedtest.sh \
- examples/*/*.edp \
- examples/CheckAllEdp \
- examples/plugin/ch.pts \
- examples/plugin/g.gmesh
+FF_EXAMPLES_FILES=tutorial/aile.msh \
+ tutorial/xyf \
+ 3d/dodecaedre01.mesh \
+ 3d/lac-leman-v4.msh \
+ plugin/lg.pgm \
+ mpi/regtests.sh \
+ misc/speedtest.sh \
+ */*.edp \
+ CheckAllEdp \
+ plugin/ch.pts \
+ plugin/g.gmesh
clean-local::
-find . \( -name '*~' -or -name ListOfUnAllocPtr.bin \) | xargs rm
@@ -259,13 +256,14 @@ clean-local::
# ----------------------
install-exec-local:: bin/script/PostInstall.sh FreeFEM-documentation.pdf
test `uname` != Darwin || $(MAKE) FreeFem++-CoCoa bin/script/PostInstall.sh
- $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgdatadir)/$(VERSION)
+ $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgdatadir) \
+ $(DESTDIR)$(PREFIX)/share/examples/freefem++
test `uname` != Darwin || $(mkinstalldirs) -m 755 $(DESTDIR)/etc/paths.d/
test `uname` != Darwin || $(mkinstalldirs) -m 755 $(DESTDIR)/usr/local/bin
- tar cvf - $(FF_EXAMPLES_FILES)| (cd $(DESTDIR)$(pkgdatadir)/$(VERSION); tar xvf -)
- $(INSTALL_SCRIPT) examples/CheckAll examples/CheckAllEdp $(DESTDIR)$(pkgdatadir)/$(VERSION)
+ cd examples ; tar cvf - $(FF_EXAMPLES_FILES) | (cd $(DESTDIR)$(PREFIX)/share/examples/freefem++; tar xvf -)
+ $(INSTALL_SCRIPT) examples/CheckAll examples/CheckAllEdp $(DESTDIR)$(PREFIX)/share/examples/freefem++
$(mkinstalldirs) -m 755 $(DESTDIR)${bindir}
- test ! -s FreeFEM-documentation.pdf || $(INSTALL_DATA) FreeFEM-documentation.pdf "$(DESTDIR)$(pkgdatadir)"
+ test ! -s FreeFEM-documentation.pdf || $(INSTALL_DATA) FreeFEM-documentation.pdf "$(DESTDIR)$(PREFIX)/share/doc/freefem++"
test `uname` != Darwin || $(INSTALL_SCRIPT) FreeFem++-CoCoa $(DESTDIR)${bindir}
test `uname` != Darwin || echo $(bindir) >$(DESTDIR)/etc/paths.d/FreeFem++
test `uname` != Darwin || ( rm $(DESTDIR)/usr/local/bin/FreeFem++-CoCoa ; $(INSTALL_SCRIPT) FreeFem++-CoCoa $(DESTDIR)/usr/local/bin )

View file

@ -0,0 +1,38 @@
--- configure.ac.orig 2020-04-02 12:11:06 UTC
+++ configure.ac
@@ -65,7 +65,7 @@ m4_define([AC_FF_WHERELIB],
AC_MSG_CHECKING(check $1)
ff_save_libs=$LIBS
LIBS="$LIBS $2 $4"
- AC_LINK_IFELSE([AC_LANG_PROGRAM([m4_if($3,,,[#include <$3>])],[])], [ff_WHERE=yes],[ff_WHERE=no])
+ AC_LINK_IFELSE([AC_LANG_PROGRAM([m4_if($3,,,[#include <$3>],[#include <stdint.h>],[#include <stdio.h>])],[])], [ff_WHERE=yes],[ff_WHERE=no])
if test "$ff_WHERE" = "yes" ; then
echo "$1 LD $2" >>$ff_where_lib_conf
ff_WHERE_INC=`AS_DIRNAME(["$3"])`
@@ -674,7 +674,7 @@ ff_prefix_dir_data="$datadir/$PACKAGE_NAME"
ff_prefix_dir_include="$ff_prefix_dir/include"
ff_prefix_dir_etc="$ff_prefix_dir/etc"
ff_prefix_dir_lib_mpi="$ff_prefix_dir/lib/mpi"
-ff_prefix_dir_example="$ff_prefix_dir_data/$PACKAGE_VERSION"
+ff_prefix_dir_example="${prefix}/share/examples/freefem++"
AC_SUBST(ff_prefix_dir_lib,$ff_prefix_dir_lib)
AC_SUBST(ff_prefix_dir_include,$ff_prefix_dir_include)
AC_SUBST(ff_prefix_dir_etc,$ff_prefix_dir_etc)
@@ -2084,7 +2084,7 @@ fi
m4_map([AC_FF_WHERELIB],[
[[mumps],[-ldmumps -lzmumps -lmumps_common -lpord],[dmumps_c.h],[]],
- [[mumps_seq],[-ldmumps_seq -lzmumps_seq -lmumps_common_seq -lpord_seq -lmpiseq_seq],[dmumps_c.h],[]],
+ [[mumps_seq],[$ff_blas_libs $ff_lapack_lib -ldmumps_seq -lzmumps_seq -lmumps_common_seq -lpord_seq -lmpiseq_seq],[dmumps_c.h],[]],
[[libseq],[-lmpiseq_seq],[${inc_usr_include}mumps_seq/mpi.h]],
[[mumps_ptscotch],[-lpord_ptscotch -lmumps_common_ptscotch -ldmumps_ptscotch -lzmumps_ptscotch -lpord_ptscotch],[dmumps_c.h]],
[[mumps_scotch],[-lpord_scotch -lmumps_common_scotch -ldmumps_scotch -lzmumps_scotch -lpord_scotch],[dmumps_c.h]],
@@ -2092,7 +2092,7 @@ m4_map([AC_FF_WHERELIB],[
[[superlu],[-lsuperlu],[${inc_usr_include}superlu/superlu_enum_consts.h],[]],
[[blacs],[ -lblacsCinit$ff_with_mpi -lblacsF77init$ff_with_mpi -lblacs$ff_with_mpi],[]],
[[scalapack],[-lscalapack$ff_with_mpi],[]],
- [[scotch],[-lscotch -lscotcherr],[scotch.h]],
+ [[scotch],[-lscotch -lscotcherr], [scotch.h]],
[[ptscotch],[-lptscotch -lptscotcherr],[ptscotch.h]],
[[metis],[-lmetis],[${inc_usr_include}metis/metis.h],[]],
[[metis],[-lmetis],[metis.h],[]],

View file

@ -0,0 +1,11 @@
--- examples/CMakeLists.txt.orig 2020-04-02 12:11:06 UTC
+++ examples/CMakeLists.txt
@@ -6,7 +6,7 @@ ADD_SUBDIRECTORY(examples)
ADD_SUBDIRECTORY(eigen)
#ADD_SUBDIRECTORY(plugin)
ADD_SUBDIRECTORY(mpi)
-ADD_SUBDIRECTORY(other)
+#ADD_SUBDIRECTORY(other)
ADD_SUBDIRECTORY(tutorial)
ADD_SUBDIRECTORY(ffddm)

View file

@ -0,0 +1,11 @@
--- plugin/seq/load.link.in.orig 2020-04-02 12:11:06 UTC
+++ plugin/seq/load.link.in
@@ -245,7 +245,7 @@ case "$WIN32$uu" in
;;
FreeBSD|NetBSD)
SHARED="-shared"
- FLAGS='-fPIC';;
+ FLAGS="-fPIC $LDFLAGS";;
# 64 bit Linux needs -fPIC (ALH)
SunOS)
SHARED="-shared"

15
math/freefem++/pkg-descr Normal file
View file

@ -0,0 +1,15 @@
FreeFem++ is an implementation of a language dedicated to the finite element
method.
It provides you a way to solve Partial Differential Equations (PDE) simply.
Problems involving partial differential equations (pde) of several branches
of physics such as fluid-structure interactions require interpolations of
data on several meshes and their manipulation within one program. In this
report we build on a fast quadtree-based interpolation algorithm, propose
a language for the manipulation of data on multiple meshes (generated with
bamg) and test by designing an extension of freefem and of freefem+.
Suggested add-ons: the ports graphics/xd3d, science/medit and math/gnuplot
(medit and gnuplot are requested to run some examples).
WWW: http://www.freefem.org/ff++/

746
math/freefem++/pkg-plist Normal file
View file

@ -0,0 +1,746 @@
bin/FreeFem++
bin/FreeFem++-nw
bin/bamg
bin/cvmsh2
bin/ff-c++
bin/ff-get-dep
bin/ff-pkg-download
bin/ffglut
bin/ffmaster
bin/ffmedit
lib/ff++/%%VER%%/bin/ff-get-dep
lib/ff++/%%VER%%/bin/ff-pkg-download
lib/ff++/%%VER%%/%%ETCDIR%%.pref
lib/ff++/%%VER%%/idp/CC.idp
lib/ff++/%%VER%%/idp/DDM-Schwarz-macro.idp
lib/ff++/%%VER%%/idp/DDM-funcs-v2.idp
lib/ff++/%%VER%%/idp/ExtractDofsonBorder.idp
lib/ff++/%%VER%%/idp/Heat3d.idp
lib/ff++/%%VER%%/idp/MPIGMRESmacro.idp
lib/ff++/%%VER%%/idp/MPIplot.idp
lib/ff++/%%VER%%/idp/MeshSurface.idp
lib/ff++/%%VER%%/idp/cobrameshcavity.idp
lib/ff++/%%VER%%/idp/cube.idp
lib/ff++/%%VER%%/idp/ffddm.idp
lib/ff++/%%VER%%/idp/ffddm_coarsemeshCS.idp
lib/ff++/%%VER%%/idp/ffddm_functions.idp
lib/ff++/%%VER%%/idp/ffddm_geneoCS.idp
lib/ff++/%%VER%%/idp/ffddm_geneoCS_3rdlvl.idp
lib/ff++/%%VER%%/idp/ffddm_parameters.idp
lib/ff++/%%VER%%/idp/ffddm_partitioning.idp
lib/ff++/%%VER%%/idp/func-max.idp
lib/ff++/%%VER%%/idp/getARGV.idp
lib/ff++/%%VER%%/idp/gsl.idp
lib/ff++/%%VER%%/idp/macro_ddm.idp
lib/ff++/%%VER%%/idp/macro_ddm_substructuring.idp
lib/ff++/%%VER%%/idp/mortar-msh.idp
lib/ff++/%%VER%%/idp/movemeshsmooth.idp
lib/ff++/%%VER%%/include/AFunction.hpp
lib/ff++/%%VER%%/include/AFunction_ext.hpp
lib/ff++/%%VER%%/include/AddNewFE.h
lib/ff++/%%VER%%/include/AnyType.hpp
lib/ff++/%%VER%%/include/BFGS.hpp
lib/ff++/%%VER%%/include/BamgFreeFem.hpp
lib/ff++/%%VER%%/include/BrentLS.hpp
lib/ff++/%%VER%%/include/CG.hpp
lib/ff++/%%VER%%/include/CGNL.hpp
lib/ff++/%%VER%%/include/CodeAlloc.hpp
lib/ff++/%%VER%%/include/CubicLS.hpp
lib/ff++/%%VER%%/include/DOperator.hpp
lib/ff++/%%VER%%/include/DataFindBoundary.hpp
lib/ff++/%%VER%%/include/FESpace.hpp
lib/ff++/%%VER%%/include/FESpacen.hpp
lib/ff++/%%VER%%/include/FQuadTree.hpp
lib/ff++/%%VER%%/include/GQuadTree.hpp
lib/ff++/%%VER%%/include/GenericMesh.hpp
lib/ff++/%%VER%%/include/HashMatrix.hpp
lib/ff++/%%VER%%/include/HashTable.hpp
lib/ff++/%%VER%%/include/HeapSort.hpp
lib/ff++/%%VER%%/include/InitFunct.hpp
lib/ff++/%%VER%%/include/Label.hpp
lib/ff++/%%VER%%/include/LineSearch.hpp
lib/ff++/%%VER%%/include/MatriceCreuse.hpp
lib/ff++/%%VER%%/include/MatriceCreuse_tpl.hpp
lib/ff++/%%VER%%/include/MatriceElementaire.hpp
lib/ff++/%%VER%%/include/Mesh1dn.hpp
lib/ff++/%%VER%%/include/Mesh2.h
lib/ff++/%%VER%%/include/Mesh2dn.hpp
lib/ff++/%%VER%%/include/Mesh3dn.hpp
lib/ff++/%%VER%%/include/MeshLn.hpp
lib/ff++/%%VER%%/include/MeshPoint.hpp
lib/ff++/%%VER%%/include/MeshSn.hpp
lib/ff++/%%VER%%/include/Meshio.h
lib/ff++/%%VER%%/include/Metric.h
lib/ff++/%%VER%%/include/NRJ.hpp
lib/ff++/%%VER%%/include/NewtonRaphson.hpp
lib/ff++/%%VER%%/include/Operator.hpp
lib/ff++/%%VER%%/include/Optima.hpp
lib/ff++/%%VER%%/include/P1IsoValue.hpp
lib/ff++/%%VER%%/include/Param.hpp
lib/ff++/%%VER%%/include/PkLagrange.hpp
lib/ff++/%%VER%%/include/PlotStream.hpp
lib/ff++/%%VER%%/include/QuadTree.h
lib/ff++/%%VER%%/include/QuadratureFormular.hpp
lib/ff++/%%VER%%/include/R1.hpp
lib/ff++/%%VER%%/include/R2.h
lib/ff++/%%VER%%/include/R2.hpp
lib/ff++/%%VER%%/include/R3.hpp
lib/ff++/%%VER%%/include/RNM.hpp
lib/ff++/%%VER%%/include/RNM_op.hpp
lib/ff++/%%VER%%/include/RNM_opc.hpp
lib/ff++/%%VER%%/include/RNM_tpl.hpp
lib/ff++/%%VER%%/include/RefCounter.hpp
lib/ff++/%%VER%%/include/RosenBrock.hpp
lib/ff++/%%VER%%/include/Serialize.hpp
lib/ff++/%%VER%%/include/SetOfE4.h
lib/ff++/%%VER%%/include/SkyLineSolver.hpp
lib/ff++/%%VER%%/include/SolverSkyLine.hpp
lib/ff++/%%VER%%/include/SparseLinearSolver.hpp
lib/ff++/%%VER%%/include/String.hpp
lib/ff++/%%VER%%/include/VirtualMatrix.hpp
lib/ff++/%%VER%%/include/VirtualSolver.hpp
lib/ff++/%%VER%%/include/VirtualSolverCG.hpp
lib/ff++/%%VER%%/include/VirtualSolverSkyLine.hpp
lib/ff++/%%VER%%/include/VirtualSolverSparseSuite.hpp
lib/ff++/%%VER%%/include/array_init.hpp
lib/ff++/%%VER%%/include/array_resize.hpp
lib/ff++/%%VER%%/include/array_tlp.hpp
lib/ff++/%%VER%%/include/assertion.hpp
lib/ff++/%%VER%%/include/bmo.hpp
lib/ff++/%%VER%%/include/clapack.h
lib/ff++/%%VER%%/include/config.h
lib/ff++/%%VER%%/include/defs.hpp
lib/ff++/%%VER%%/include/eigenv.h
lib/ff++/%%VER%%/include/endian.hpp
lib/ff++/%%VER%%/include/environment.hpp
lib/ff++/%%VER%%/include/error.hpp
lib/ff++/%%VER%%/include/fem.hpp
lib/ff++/%%VER%%/include/fem3.hpp
lib/ff++/%%VER%%/include/ff++.hpp
lib/ff++/%%VER%%/include/ffapi.hpp
lib/ff++/%%VER%%/include/ffstack.hpp
lib/ff++/%%VER%%/include/getprog-unix.hpp
lib/ff++/%%VER%%/include/glrgraph.hpp
lib/ff++/%%VER%%/include/gmres.hpp
lib/ff++/%%VER%%/include/lex.hpp
lib/ff++/%%VER%%/include/lg.tab.hpp
lib/ff++/%%VER%%/include/lgfem.hpp
lib/ff++/%%VER%%/include/lgmesh3.hpp
lib/ff++/%%VER%%/include/lgsolver.hpp
lib/ff++/%%VER%%/include/libMesh/chrono.h
lib/ff++/%%VER%%/include/libMesh/eigenv.h
lib/ff++/%%VER%%/include/libMesh/libmeshb7.h
lib/ff++/%%VER%%/include/libMesh/memory.h
lib/ff++/%%VER%%/include/libmesh5.h
lib/ff++/%%VER%%/include/meshtype.h
lib/ff++/%%VER%%/include/mode_open.hpp
lib/ff++/%%VER%%/include/msh3.hpp
lib/ff++/%%VER%%/include/pcm.hpp
lib/ff++/%%VER%%/include/ppmimg.h
lib/ff++/%%VER%%/include/problem.hpp
lib/ff++/%%VER%%/include/renumb.hpp
lib/ff++/%%VER%%/include/rgraph.hpp
lib/ff++/%%VER%%/include/showverb.hpp
lib/ff++/%%VER%%/include/splitsimplex.hpp
lib/ff++/%%VER%%/include/strversionnumber.hpp
lib/ff++/%%VER%%/include/throwassert.hpp
lib/ff++/%%VER%%/include/ufunction.hpp
lib/ff++/%%VER%%/include/versionnumber.hpp
lib/ff++/%%VER%%/include/write_hdf5.hpp
lib/ff++/%%VER%%/include/write_xdmf.hpp
lib/ff++/%%VER%%/lib/BEC.so
lib/ff++/%%VER%%/lib/BernardiRaugel.so
lib/ff++/%%VER%%/lib/BinaryIO.so
lib/ff++/%%VER%%/lib/CircumCenter.so
lib/ff++/%%VER%%/lib/ClosePoints.so
lib/ff++/%%VER%%/lib/Curvature.so
lib/ff++/%%VER%%/lib/DxWriter.so
lib/ff++/%%VER%%/lib/Element_HCT.so
lib/ff++/%%VER%%/lib/Element_Mixte.so
lib/ff++/%%VER%%/lib/Element_Mixte3d.so
lib/ff++/%%VER%%/lib/Element_P1bl.so
lib/ff++/%%VER%%/lib/Element_P1dc1.so
lib/ff++/%%VER%%/lib/Element_P1ncdc.so
lib/ff++/%%VER%%/lib/Element_P2bulle3.so
lib/ff++/%%VER%%/lib/Element_P2pnc.so
lib/ff++/%%VER%%/lib/Element_P3.so
lib/ff++/%%VER%%/lib/Element_P3dc.so
lib/ff++/%%VER%%/lib/Element_P4.so
lib/ff++/%%VER%%/lib/Element_P4dc.so
lib/ff++/%%VER%%/lib/Element_PkEdge.so
lib/ff++/%%VER%%/lib/Element_QF.so
lib/ff++/%%VER%%/lib/FreeFemQA.so
lib/ff++/%%VER%%/lib/IncompleteCholesky.so
lib/ff++/%%VER%%/lib/MUMPS.so
lib/ff++/%%VER%%/lib/MUMPS_seq.so
lib/ff++/%%VER%%/lib/MetricKuate.so
lib/ff++/%%VER%%/lib/MetricPk.so
lib/ff++/%%VER%%/lib/Morley.so
lib/ff++/%%VER%%/lib/NewSolver.so
lib/ff++/%%VER%%/lib/SaveHB.so
lib/ff++/%%VER%%/lib/Schur-Complement.so
lib/ff++/%%VER%%/lib/SuperLu.so
lib/ff++/%%VER%%/lib/UMFPACK64.so
lib/ff++/%%VER%%/lib/VTK_writer.so
lib/ff++/%%VER%%/lib/VTK_writer_3d.so
lib/ff++/%%VER%%/lib/WHERE.libMesh
lib/ff++/%%VER%%/lib/WHERE_LIBRARY
lib/ff++/%%VER%%/lib/WHERE_LIBRARY-config
lib/ff++/%%VER%%/lib/WHERE_LIBRARY-download
lib/ff++/%%VER%%/lib/addNewType.so
lib/ff++/%%VER%%/lib/bfstream.so
lib/ff++/%%VER%%/lib/biofunc.so
lib/ff++/%%VER%%/lib/dfft.so
lib/ff++/%%VER%%/lib/distance.so
lib/ff++/%%VER%%/lib/exactpartition.so
lib/ff++/%%VER%%/lib/ff-AiryBiry.so
lib/ff++/%%VER%%/lib/ff-Ipopt.so
lib/ff++/%%VER%%/lib/ff-NLopt.so
lib/ff++/%%VER%%/lib/ff-cmaes.so
lib/ff++/%%VER%%/lib/ff-get-dep.awk
lib/ff++/%%VER%%/lib/fflapack.so
lib/ff++/%%VER%%/lib/ffnewuoa.so
lib/ff++/%%VER%%/lib/ffrandom.so
lib/ff++/%%VER%%/lib/funcTemplate.so
lib/ff++/%%VER%%/lib/geophysics.so
lib/ff++/%%VER%%/lib/gmsh.so
lib/ff++/%%VER%%/lib/gsl.so
lib/ff++/%%VER%%/lib/iohdf5.so
lib/ff++/%%VER%%/lib/iovtk.so
lib/ff++/%%VER%%/lib/isoline.so
lib/ff++/%%VER%%/lib/lapack.so
lib/ff++/%%VER%%/lib/lgbmo.so
lib/ff++/%%VER%%/lib/libMesh.a
lib/ff++/%%VER%%/lib/mat_dervieux.so
lib/ff++/%%VER%%/lib/mat_edgeP1.so
lib/ff++/%%VER%%/lib/mat_psi.so
lib/ff++/%%VER%%/lib/medit.so
lib/ff++/%%VER%%/lib/metis.so
lib/ff++/%%VER%%/lib/msh3.so
lib/ff++/%%VER%%/lib/myfunction.so
lib/ff++/%%VER%%/lib/myfunction2.so
lib/ff++/%%VER%%/lib/pcm2rnm.so
lib/ff++/%%VER%%/lib/ppm2rnm.so
lib/ff++/%%VER%%/lib/qf11to25.so
lib/ff++/%%VER%%/lib/scotch.so
lib/ff++/%%VER%%/lib/shell.so
lib/ff++/%%VER%%/lib/splitedges.so
lib/ff++/%%VER%%/lib/splitmesh12.so
lib/ff++/%%VER%%/lib/splitmesh3.so
lib/ff++/%%VER%%/lib/splitmesh4.so
lib/ff++/%%VER%%/lib/splitmesh6.so
lib/ff++/%%VER%%/lib/symmetrizeCSR.so
lib/ff++/%%VER%%/lib/tetgen.so
lib/ff++/%%VER%%/lib/thresholdings.so
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/3d-Leman.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/ArrayFE-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/EqPoisson.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/Lac.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/Laplace-Adapt-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/Laplace-Adapt-aniso-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/Laplace3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/LaplaceRT-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/NSI3d-carac.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/NSI3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/Period-Poisson-cube-ballon.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/Poisson-cube-ballon.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/Poisson.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/Poisson3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/Sphere-Isocahedron.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/Stokes.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/TruncLac.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/all.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/beam-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/bottle.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/cone.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/convect-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/crack-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/cube-period.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/cylinder-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/cylinder.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/dodecaedre01.mesh
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/extract-boundary3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/fallingspheres.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/first.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/intlevelset3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/lac-leman-v4.msh
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/meditddm.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/p.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/periodic-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/pyramide.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/ref.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/refinesphere.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/regtests.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/schwarz-nm-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/sphere2.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/sphere6.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/sphereincube.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/tetgencube.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3d/tetgenholeregion.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dCurve/LaplacianCurve.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dCurve/QMoscillator-new1d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dCurve/WaveEquation-new1d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dCurve/all.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dCurve/basicGlue.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dCurve/buildParametricMeshL.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dCurve/elasticstring.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dCurve/extractMeshes.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dSurf/HeatTorus.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dSurf/LapP1withflux.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dSurf/Laplace3dSP2.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dSurf/LaplacianSurf.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dSurf/Pinocchio.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dSurf/all.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dSurf/beam-3dS.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dSurf/buildMeshSfromMesh3.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dSurf/cauchyproblem.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dSurf/elasticityplate.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dSurf/extractSurfFromMesh3.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dSurf/glu3DSurf.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dSurf/operatorsOnMeshS.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/3dSurf/testvtk.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CheckAll
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CheckAllEdp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bug/SegmentationFault.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bug/aaa.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bug/bug-arg-string.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bug/bugborder.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bug/bugf.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bug/bugifexp.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bug/bugv1.18.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bug/fe-vect.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bug/func.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bug/zArithmetic_bug1.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eigen/BeamEigenValue.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eigen/BeamEigenValueperio.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eigen/Lap3dEigenValue.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eigen/LapComplexEigenValue.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eigen/LapEigen1DBeltrami.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eigen/LapEigenBeltrami.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eigen/LapEigenValue.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eigen/LapEigenValueFunc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eigen/LapEigenValueFuncV2.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eigen/LapnosymComplexEigenValue.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eigen/LapnosymEigenValue.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eigen/Stokes-eigen.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eigen/VP-Steklov-Poincare.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eigen/WGM-sphere.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eigen/all.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eigen/condition-number.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eigen/free-cyl-axi.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eigen/neuman.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eigen/regtests.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/BlackScholes2D.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/Heat.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/NSNewton.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/NSprojection.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/all.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/condensor.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/convects.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/heatex.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/lame.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/membrane.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/membranerror.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/muwave.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/optimcontrol.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/potential.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/ref.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/regtests.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/schwarz.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/sound.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/stokes.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/test1.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/thermal.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/examples/thermic.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/Helmholtz-2d-FEM-BEM-coupling.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/Helmholtz-2d-HPDDM-BGMRES.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/Helmholtz-2d-marmousi.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/Helmholtz-2d-simple.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/Helmholtz-3d-overthrust.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/Helmholtz-3d-simple.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/Helmholtz_Cobracavity_BEM.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/Helmholtz_circle_BEM.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/Maxwell-3d-simple.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/Maxwell_Cobracavity.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/Navier-2d-marmousi2.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/Richards-2d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/diffusion-2d-thirdlevelgeneo.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/diffusion-3d-minimal-ddm.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/diffusion-3d-minimal-direct.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/diffusion-3d-simple.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/elasticity-3d-simple.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/elasticity-3d-thirdlevelgeneo.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/heat-torus-3d-surf.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/natural_convection.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffddm/natural_convection_3D_obstacle.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/Schur-complement-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/advection-TS-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/block-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/bratu-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/bratu-hpddm-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/buildRecursive.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/createPartition.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/diffusion-2d-PETSc-complex.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/diffusion-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/diffusion-2d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/diffusion-3d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/diffusion-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/diffusion-mg-2d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/diffusion-mg-3d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/diffusion-periodic-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/diffusion-periodic-2d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/diffusion-periodic-balanced-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/diffusion-simple-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/diffusion-substructuring-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/diffusion-substructuring-2d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/diffusion-substructuring-withPartitioning-2d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/distributed-parmmg.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/elasticity-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/elasticity-2d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/elasticity-3d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/elasticity-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/elasticity-SNES-3d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/elasticity-block.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/elasticity-simple-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/elasticity-substructuring-2d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/heat-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/heat-2d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/heat-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/heat-TS-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/heat-TS-RHS-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/heat-io-2d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/heat-torus-3d-surf.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/helmholtz-2d-PETSc-complex.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/helmholtz-2d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/helmholtz-3d-line-PETSc-complex.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/helmholtz-3d-surf-PETSc-complex.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/helmholtz-coupled-2d-PETSc-complex.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/helmholtz-mg-2d-PETSc-complex.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/helmholtz-mg-2d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/iterative.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/laplace-2d-SLEPc-complex.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/laplace-2d-SLEPc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/laplace-RT-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/laplace-adapt-3d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/laplace-adapt-dist-3d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/laplace-beltrami-3d-line-SLEPc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/laplace-beltrami-3d-surf-SLEPc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/laplace-lagrange-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/laplace-spherical-harmonics-2d-SLEPc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/laplace-torus-2d-SLEPc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/maxwell-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/maxwell-3d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/maxwell-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/maxwell-mg-3d-PETSc-complex.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/minimal-surface-Tao-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/natural-convection-fieldsplit-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/navier-stokes-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/navier-stokes-2d-SLEPc-complex.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/neo-Hookean-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/newton-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/newton-adaptmesh-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/newton-vi-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/newton-vi-adaptmesh-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/orego-Tao-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/reconstructDmesh.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/save-load-Dmesh.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/schrodinger-axial-well-2d-SLEPc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/schrodinger-harmonic-oscillator-1d-SLEPc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/schrodinger-harmonic-oscillator-2d-SLEPc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/schrodinger-square-well-1d-SLEPc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/stokes-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/stokes-2d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/stokes-3d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/stokes-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/stokes-block-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/stokes-fieldsplit-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/stokes-fieldsplit-3d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/stokes-io-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/toy-Tao-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/transfer.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/transpose-solve-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/vi-2d-PETSc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hpddm/withPartitioning.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/D2.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/FE-medit.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/NSP1P1.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/NSP1P1b.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/NSP1P1bl.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/NSP1P2.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/Richard.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/Stokes-P1nc-P0+P1.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/aaRT.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/aaa-adp.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/aadaptation.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/aalapacien.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/aalaplace-nc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/aamove.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/all.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/arrayoFVh.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/bilap.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/ccc-adp.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/demo.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/demo1.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/funct.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/graphics-benchmark.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/include.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/lap3-cpu.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/lap_mat.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/lapacienprecon.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/makeref.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/parareal.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/ref.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/regtests.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/renumbering.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/speedtest.sh
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/testFE.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/testadp.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/teste.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/torture-search2d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/wafer-heating-laser-axi.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/DDM-Schwarz-Lame-2d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/DDM-Schwarz-Lame-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/DDM-Schwarz-Lap-2dd.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/DDM-Schwarz-Lap-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/DDM-Schwarz-Stokes-2d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/Helmholtz_Cobracavity.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/Helmholtz_circle_Dirichlet.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/Helmholtz_circle_Neumann.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/LapMPIEigenValue.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/LaplaceRT-3d-matrix-mumps.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/MPICGLap.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/MPIGMRES2D.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/MPIGMRES3D.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/MUMPS.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/NSCaraCyl.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/NSI3d-carac-mumps.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/NSI3d-carac.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/Stokes-v1-matrix-mumps.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/Stokes-v2-matrix-mumps.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/Stokes-v3-matrix-mumps.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/VG.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/cavityNewtow-MUMPS.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/chaleur3D-mumps.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/cmaes-mpi-VarIneq.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/essai-com.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/essai.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/htool_bem.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/mortar-DN-4-mpi.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/parmetis-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/parmetis.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/parmmg.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/regtests.sh
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/schwarz-2d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/schwarz-3.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/schwarz-b.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/schwarz-c.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mpi/testsolver_MUMPS.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/APk-AdaptEpsDeltaPk.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/APk-ExplicitPkTest.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/APk-FreeFemQA.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/APk-MetricPk.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/CircumCenter.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/ClosePoints.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/Element_QF.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/IncompleteCholesky.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/IpoptLap.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/IpoptMinSurf.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/IpoptMinSurfVol.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/IpoptTest.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/IpoptVI.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/IpoptVI2.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/LapDG3.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/LapDG4.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/LapLNewSolver.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/LapMUMPS_seq.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/LapNewSolver.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/LapUmfpack64.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/LaplaceP2pnc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/LaplaceP3-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/LaplaceP3.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/LaplaceP4.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/LaplaceRT1.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/LaplaceRT13d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/LaplaceRT2.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/Leman-mesh.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/MetricKuate.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/NSP2BRP0.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/NS_P2BR_P0.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/PARDISO.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/RT2-ff.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/SaveHB_sample.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/SaveHB_sample_z.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/Schur-Complement-V4.3.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/Schur-Complement.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/Stokes-surface-tension-axi.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/SuperLU.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/VarIneq2.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/all.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/aniso.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/bfstream.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/bilapHCT.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/bilapMorley.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/bilapP3-hct-like.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/bmo.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/buildlayermesh.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/ch.pts
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/checkglumeshcube.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/cmaes-VarIneq.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/cmaes-oven.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/convect_dervieux.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/convectchacon-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/convectchacon.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/convexehull3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/cube.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/curvature.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/dfft.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/distance.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/distance2.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/distance3.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/exactpartition.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/ffnewuoa.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/ffrandom.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/ffslave.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/findalllocalmin.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/funcTemplate.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/g.gmesh
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/glumesh3D.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/gsl.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/ilut.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/iohd5-beam-2d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/iohd5-beam-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/isoline.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/lame-TD-NSS.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/lap-solvers.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/lapack.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/layer.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/lg.pgm
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/load.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/mat_edgeP1.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/meditddm.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/metis.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/myType.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/myfunction2.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/pipe.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/plot-fb-P3.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/plot-fb-P3dc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/plot-fb-P4.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/plot-fb-P4dc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/plotfb.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/ppm2rnm.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/provadxw.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/ref.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/refinesphere.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/regtests.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/schwarz-nm.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/scotch.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/shell.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/splitedges.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/splitmesh12.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/splitmesh3.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/splitmesh4.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/splitmesh6.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/test-ElementMixte.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/testFE-P1bl.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/testFE-P2Bulle3.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/testFE-P2pnc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/testFE-P3.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/testFE-P3dc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/testFE-P4.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/testFE-P4dc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/testFE-PkEdge.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/testFE.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/testFEHCT.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/testFEMorley.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/testFE_P2BR.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/testdist.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/testp1dcnc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/tetgencube.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/tetgenholeregion_rugby.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/thresholdings.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/ttestio.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/waveguide.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plugin/waveguide2.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/AdaptResidualErrorIndicator.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/AdjointSolve.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/BEM.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/FE.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/FEComplex.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/LapDG2.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/Laplace-RHS-Dirac.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/Laplace-lagrange-mult.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/Laplace.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/LaplaceP1.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/LaplaceP1P2h.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/LaplaceP1bis.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/LaplaceRT.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/NS-BackwardStep.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/NSUzawaCahouetChabart.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/Newton.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/Periodic.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/Stokes-macro2d-3d.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/StokesUzawa.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/VI-adap.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/VI.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/a_tutorial.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/adapt.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/adaptindicatorP1.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/adaptindicatorP2.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/aile.msh
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/algo.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/all.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/array.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/beam.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/calculus.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/cavity.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/cavityNewtow.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/convect-apt.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/convect.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/convect2.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/dumptable.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/ex-vf.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/exception.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/fluidStruct.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/fluidStructAdapt.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/forall.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/freeboundary-weak.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/freeboundary.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/func.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/glumesh.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/gnuplot.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/intlevelset.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/mat_interpol.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/medit.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/mesh-internal.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/mesh.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/minlenedge.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/mortar-DN-4.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/movemesh.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/nl-elast-neo-Hookean.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/nolinear-elas.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/onde.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/periodic4.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/periodic4bis.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/plot.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/readmesh.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/ref.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/region.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/regtests.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/saverestore.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/schwarz-gc.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/schwarz-no-overlap.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/schwarz-overlap.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/schwarz2.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/shur-comp.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/sparse-cmatrix.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/sparse-matrix.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/sphere.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/string.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/tablefunction.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/taboftab.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/testplot.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/thermic-fast.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/uniformmesh.edp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tutorial/xyf
@dir lib/ff++/%%VER%%/lib/mpi
@dir share/FreeFEM