-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add bilinear weight generation (#112)
* The bilinear and generalized barycentric coordinate schemes that work for meshes with holes. Updated from a previous version in order to fix a merge conflict. * Minor updates to remove warnings when configuring with autotools 2.7+ * Disable exceptions for non-monotone bilinear maps * Reduce requirement to autoconf-2.69 * Uncomment the exception * Reduce tolerance for bilinear weight identification * simplify gnomonic projection use a simpler formula for projection on tangent plane (gnommonic projection) restore tolerance to 1.e-12 for points coincident to polygon vertices for bilinear maps * Revisions for the bilinear, non-integrated weight generation. * Quick bug fix in method to compute bilinear weights. --------- Co-authored-by: Vijay Mahadevan <[email protected]> Co-authored-by: Iulian Grindeanu <[email protected]>
- Loading branch information
1 parent
8c8b634
commit 03192f6
Showing
8 changed files
with
1,491 additions
and
527 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,15 +2,15 @@ | |
# Process this file with autoconf to produce a configure script. | ||
# Usage: autoreconf -fi | ||
# | ||
AC_PREREQ([2.68]) | ||
AC_INIT([TempestRemap], [2.1.2], [[email protected]]) | ||
AC_PREREQ([2.69]) | ||
AC_INIT([TempestRemap],[2.1.2],[[email protected]]) | ||
AC_CONFIG_AUX_DIR([config]) | ||
AC_CONFIG_MACRO_DIR([config]) | ||
#AC_CONFIG_SRCDIR([test/optimtest.m]) | ||
AC_CONFIG_HEADERS([src/TempestConfig.h]) | ||
|
||
AM_INIT_AUTOMAKE([foreign subdir-objects]) | ||
AM_PROG_LIBTOOL | ||
LT_INIT | ||
AM_SILENT_RULES([yes]) | ||
|
||
LT_INIT([disable-shared]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.