Skip to content

Commit

Permalink
Spelling corrections
Browse files Browse the repository at this point in the history
Spelling corrections
  • Loading branch information
albert-github committed Sep 2, 2024
1 parent 12f278e commit 3721830
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ void test_algebraic_structure_intern(
//commutative
assert(a+b+c==c+b+a);
assert(a*b*c==c*b*a);
//distributiv
//distributive
assert((a-b)*c==a*c-b*c);
assert((a+b)*c==a*c+b*c);
//binom
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Input is based on the curves and points indexes from intersect.pt
# intersect.xcv. The first two numbers are the numbers of the input curves
# to be intersected. After that there is the number of intesections and
# to be intersected. After that there is the number of intersections and
# 2-3 numbers representing each intersection. Meaning, the input is of the form:
# intersect <id of 1st x-curve> <id of 2nd x-curve> \
# <expected number of intersections> [<type of intersection> \
Expand Down
2 changes: 1 addition & 1 deletion Documentation/doc/biblio/geom.bib
Original file line number Diff line number Diff line change
Expand Up @@ -92400,7 +92400,7 @@ @article{kd-pamm-82

@inproceedings{kn-afrmt-97
, author = "Yoshiyuki Kusakari and Takao Nishizeki"
, title = "An Algorithm for Finding a Region with the Minimum Total {$L_1$}-Distance from Prescibed Terminals"
, title = "An Algorithm for Finding a Region with the Minimum Total {$L_1$}-Distance from Prescribed Terminals"
, booktitle = "Proc. 8th Annu. Internat. Sympos. Algorithms Comput."
, nickname = "ISAAC '97"
, site = "Singapore"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ class Square_border_parameterizer_3
// If the target is a corner vertex, we have the complete length of a side in 'len'
// and we must "normalize" the previous entries
if(get(vpmap, vt)) {
// If both extremeties of a segment are corners, offsets are already correct
// If both extremities of a segment are corners, offsets are already correct
if(!get(vpmap, vs)) {
CGAL_assertion(len != 0.0);
double ld = 1.0 / len;
Expand Down

0 comments on commit 3721830

Please sign in to comment.