gnudatalanguage / gdl

GDL - GNU Data Language
GNU General Public License v2.0
270 stars 61 forks source link

rewriting test_elhmes to assess small numerical changes between x86 & M2 #1840

Closed alaingdl closed 1 month ago

alaingdl commented 1 month ago

all is in the title ! tolerance is 1e-5

slayoo commented 1 month ago

@alaingdl, if not creating a new branch for each PR, you can use the git rebase command to bring this branch in sync with the upstream master branch (which contains a squash commit from your previous PR, but does not contain commits that were squashed). To do it, you can try:

git fetch upstream
git rebase upstream/master
git push -f

This way, this PR will have only the relevant commits. HTH, S.