getfem-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Getfem-commits] [getfem-commits] fixmisspell updated (366dcee -> 4d22c9


From: Yves Renard
Subject: [Getfem-commits] [getfem-commits] fixmisspell updated (366dcee -> 4d22c9a)
Date: Wed, 19 Dec 2018 13:47:42 -0500 (EST)

renard pushed a change to branch fixmisspell.

      from  366dcee   Fix typo in docs
      adds  578da9c   'PK2' instead of -sigma in hyper elastic law names
      adds  e14de6a   minor change
      adds  8dcd729   Ensure compatibility of the python interface to python 
3.x, --enable-python3 of the configure script enable the interface with python 
3.x
      adds  6e47793   Merge remote-tracking branch 
'origin/devel-tetsuo-fix_test_error'
      adds  55ac4dd   [fix] test error in numpy Version: 1.14.5
      adds  aa4d3e1   minor modification for compatibility with xcode 10.0, mac
      adds  d3d1d62   [add] modification for translation
      adds  f56a693   Merge branch 'master' of 
ssh://git.sv.gnu.org:/srv/git/getfem into devel-tetsuo-translation
      adds  55df88e   update config file
      adds  6187a32   add content "Localization(L10N)"
      adds  0dc4111   Fix by review
      adds  f157fa0   fix Warning: this 'for' clause does not guard
      adds  1d789aa   documentation improvements
      adds  ab95e5c   optimizing gmm::add for small vectors
      adds  98b56a3   adding the scaled case
      adds  f56e01a   comparing pconvex_structure by keys everywhere
      adds  e9270a8   further refining comparison for convex_structure pointers
      adds  45c3f1b   Add a ball shell structured mesh generator (tested in 2D 
and 3D)
      adds  a14b31c   Code clean up
      adds  f054185   Let the tolerance sign determine if added points to a 
mesh are merged with existing ones or not
      adds  b462708   Add merge_convexes_from_mesh method to the mesh object
      adds  3e2655b   New implementation of project_into_convex as a geotrans 
class function
      adds  5e91d08   Fix projected_fem
      adds  4001a79   Fix copyright header
      adds  aa91194   Add format option to GMM's vecsave
      adds  5b0ebff   Fix vecsave format option
      adds  11638ff   Avoid creation of some temporary objects.
      adds  3326ae3   minor fix
      adds  4fe9963   Fix python script by 2to3
      adds  18bcf86   Add initial support for gmsh mesh format version 4
      adds  d33eb66   Merge branch 'master' of 
ssh://git.sv.gnu.org:/srv/git/getfem into devel-tetsuo-2to3check
      adds  4d22c9a   Merge remote-tracking branch 'origin/fixmisspell'

No new revisions were added by this update.

Summary of changes:
 .gitignore                                         |    1 +
 configure.ac                                       |    2 +-
 doc/sphinx/.tx/config                              | 1719 ++++++++++++++++++++
 doc/sphinx/Makefile.am                             |   15 +-
 doc/sphinx/source/conf.py                          |    5 +-
 doc/sphinx/source/install/install_mac.rst          |   11 +-
 doc/sphinx/source/project/contribute.rst           |   45 +
 .../source/userdoc/model_nonlinear_elasticity.rst  |   40 +-
 interface/src/getfem_interface.cc                  |   18 +-
 interface/src/gf_asm.cc                            |    2 +-
 interface/tests/matlab/demo_nonlinear_elasticity.m |   12 +-
 interface/tests/python/check_levelset.py           |    2 +-
 interface/tests/python/check_mixed_mesh.py         |  386 ++---
 .../python/demo_cracked_thermo_elastic_body.py     |  336 ++--
 interface/tests/python/demo_dynamic_contact_1D.py  |   38 +-
 interface/tests/python/demo_laplacian.py           |    2 +-
 .../tests/python/demo_large_sliding_contact.py     |    2 +-
 interface/tests/python/demo_mortar.py              |    2 +-
 .../tests/python/demo_nonlinear_elasticity.py      |    2 +-
 interface/tests/python/demo_plasticity.py          |    4 +-
 interface/tests/python/demo_stokes_3D_tank.py      |    4 +-
 interface/tests/python/demo_tripod.py              |    4 +-
 interface/tests/python/demo_tripod_alt.py          |    4 +-
 interface/tests/python/demo_wave.py                |    4 +-
 interface/tests/python/getfem_tvtk.py              |   22 +-
 m4/ax_prog_cxx_mpi.m4                              |   20 +-
 src/bgeot_convex_ref.cc                            |   66 +
 src/bgeot_convex_structure.cc                      |   26 +
 src/bgeot_geometric_trans.cc                       |   20 +-
 src/bgeot_node_tab.cc                              |   26 +-
 src/bgeot_poly_composite.cc                        |   59 -
 src/bgeot_torus.cc                                 |    6 +-
 src/getfem/bgeot_convex_ref.h                      |    7 +
 src/getfem/bgeot_convex_structure.h                |   16 +-
 src/getfem/bgeot_geometric_trans.h                 |    2 +
 src/getfem/bgeot_mesh.h                            |   14 +-
 src/getfem/bgeot_node_tab.h                        |    9 +-
 src/getfem/bgeot_poly_composite.h                  |   61 +-
 src/getfem/bgeot_torus.h                           |    3 +-
 src/getfem/getfem_mesh.h                           |    7 +
 src/getfem/getfem_mesh_fem.h                       |    2 +-
 src/getfem/getfem_projected_fem.h                  |    8 +-
 src/getfem/getfem_regular_meshes.h                 |   22 +
 src/getfem_assembling_tensors.cc                   |   15 +-
 src/getfem_contact_and_friction_common.cc          |   30 +-
 src/getfem_generic_assembly_semantic.cc            |   19 +-
 src/getfem_import.cc                               |  463 +++---
 src/getfem_mesh.cc                                 |   41 +
 src/getfem_nonlinear_elasticity.cc                 |   67 +-
 src/getfem_projected_fem.cc                        |   88 +-
 src/getfem_regular_meshes.cc                       |  168 +-
 src/gmm/gmm_blas_interface.h                       |  102 +-
 src/gmm/gmm_except.h                               |   16 +-
 src/gmm/gmm_inoutput.h                             |   13 +-
 tests/dynamic_array.cc                             |    2 +-
 55 files changed, 3157 insertions(+), 923 deletions(-)
 create mode 100644 doc/sphinx/.tx/config



reply via email to

[Prev in Thread] Current Thread [Next in Thread]