Skip to content

Commit fa920bb

Browse files
committed
fixed print message for errors
1 parent c8b3d81 commit fa920bb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

part1/src/ex3_ex4/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import numpy as np
44
import matplotlib.pyplot as plt
55
import time
6-
RANGE_XY = 1000000
6+
RANGE_XY = 1000
77
def parse_input():
88
points = []
99
ch = raw_input("To autogenerate write ->AUTO<- else just type something: ")

part1/src/ex3_ex4/plane.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def incremental_convex_hull(self):
129129
elif ort == CCW:
130130
break
131131
else:
132-
print ("COLINEAR points in the lower_hull")
132+
print ("COLINEAR points in the upper_hull")
133133
return
134134
else:
135135
break

0 commit comments

Comments
 (0)