Skip to content

Commit 6e19d23

Browse files
author
Release Manager
committed
gh-36050: normaliz: Update to 3.10.1 <!-- ^^^^^ Please provide a concise, informative and self-explanatory title. Don't put issue numbers in there, do this in the PR body below. For example, instead of "Fixes #1234" use "Introduce new method to calculate 1+1" --> <!-- Describe your changes here in detail --> <!-- Why is this change required? What problem does it solve? --> https://github.com/Normaliz/Normaliz/releases <!-- If this PR resolves an open issue, please link to it here. For example "Fixes #12345". --> <!-- If your change requires a documentation PR, please link it appropriately. --> ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> <!-- If your change requires a documentation PR, please link it appropriately --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> <!-- Feel free to remove irrelevant items. --> - [x] The title is concise, informative, and self-explanatory. - [ ] The description explains in detail what this PR is about. - [ ] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [ ] I have updated the documentation accordingly. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on - #12345: short description why this is a dependency - #34567: ... --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> URL: #36050 Reported by: Matthias Köppe Reviewer(s): Kwankyu Lee
2 parents 8f938b7 + b4244cc commit 6e19d23

File tree

3 files changed

+26
-5
lines changed

3 files changed

+26
-5
lines changed

build/pkgs/normaliz/checksums.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
tarball=normaliz-VERSION.tar.gz
2-
sha1=16fcf28e862f8d7c971c9fa682cbacb24fcf8ce1
3-
md5=0d8a2e841193bb4b2422aac7744ece0b
4-
cksum=2885510960
5-
upstream_url=https://github.com/Normaliz/Normaliz/releases/download/VERSION/normaliz-VERSION.tar.gz
2+
sha1=d3c4e554c6a5ccf4fd04147e7744a63e3def1766
3+
md5=1c7a7833ad180ef4e0e4f124ed398973
4+
cksum=3124231015
5+
upstream_url=https://github.com/Normaliz/Normaliz/releases/download/vVERSION/normaliz-VERSION.tar.gz
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.10.0
1+
3.10.1

build/pkgs/normaliz/patches/411.patch

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
commit ecdb62c90a3767b440800dcf2c49589e890a53b1
2+
Author: Matthias Koeppe <[email protected]>
3+
Date: Tue Aug 8 17:03:32 2023 -0700
4+
5+
full_cone.cpp: Remove debug output
6+
7+
diff --git a/source/libnormaliz/full_cone.cpp b/source/libnormaliz/full_cone.cpp
8+
index 0fd906b3..cb2cce2b 100644
9+
--- a/source/libnormaliz/full_cone.cpp
10+
+++ b/source/libnormaliz/full_cone.cpp
11+
@@ -3447,8 +3447,8 @@ void Full_Cone<Integer>::build_cone_dynamic() {
12+
// if they aren't in a hyperplane anyway
13+
if(IntHullNorm.size() > 0){
14+
#pragma omp parallel for
15+
- for(size_t i = 0; i< OriGens.nr_of_rows(); ++i){
16+
- cout << "i " << i << " -- " << OriGensFloat[i];
17+
+ for (size_t i = 0; i< OriGens.nr_of_rows(); ++i){
18+
+ // cout << "i " << i << " -- " << OriGensFloat[i];
19+
nmz_float norm = v_scalar_product(OriGensFloat[i], IntHullNormFloat);
20+
v_scalar_division(OriGensFloat[i], norm);
21+
}

0 commit comments

Comments
 (0)