-
-
Notifications
You must be signed in to change notification settings - Fork 480
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Outsource some functions in bit_vector_operations.cc #30458
Comments
New commits:
|
Commit: |
Branch pushed to git repo; I updated commit sha1. New commits:
|
Reviewer: Travis Scrimshaw |
comment:3
LGTM. |
comment:4
Thank you. |
comment:5
The functions
Descriptions for the functions inline int contains_one(uint64_t *face, uint64_t **faces, size_t n_faces, size_t face_length){
/*
- Return whether ``face`` contains in one of ``faces``.
+ Return whether ``face`` contains one of ``faces``.
*/ inline int contains_one(uint64_t *face, uint64_t **faces, size_t n_faces, size_t face_length, size_t skip){
/*
- Return whether ``face`` is contains in one of ``faces``.
+ Return whether ``face`` contains one of ``faces``.
Skips ``faces[skip]``.
*/ |
Branch pushed to git repo; I updated commit sha1. New commits:
|
Changed reviewer from Travis Scrimshaw to Travis Scrimshaw, Samuel Lelièvre |
comment:9
Thanks again. |
comment:11
Rebased. |
Changed branch from u/gh-kliem/outsource_inclusion_maximal to |
We simplify obtaining the inclusion maximal faces in the function
get_next_level
by outsourcing to new functionis_contained_in_one
.In addition we implement
contains_one
for #30040.This ticket merges cleanly with #30435.
Component: geometry
Keywords: code duplication, combinatorial polyhedron
Author: Jonathan Kliem
Branch/Commit:
5311cdf
Reviewer: Travis Scrimshaw, Samuel Lelièvre
Issue created by migration from https://trac.sagemath.org/ticket/30458
The text was updated successfully, but these errors were encountered: