Skip to content

Commit

Permalink
let's call solutions "solutions"
Browse files Browse the repository at this point in the history
  • Loading branch information
malb committed Aug 3, 2017
1 parent 0116ee3 commit 3f17927
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/fpylll/fplll/enumeration.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ cdef class Enumeration:
target_coord_d, sub_tree_, pruning_, dual)
sig_off()
if not self._fe_core.d.size():
raise EnumerationError("No vector found.")
raise EnumerationError("No solution found.")

solutions_d = self._fe_core.d.begin()
while solutions_d != self._fe_core.d.end():
Expand All @@ -324,7 +324,7 @@ cdef class Enumeration:
target_coord_ld, sub_tree_, pruning_, dual)
sig_off()
if not self._fe_core.ld.size():
raise EnumerationError("No vector found.")
raise EnumerationError("No solution found.")

solutions_ld = self._fe_core.ld.begin()
while solutions_ld != self._fe_core.ld.end():
Expand All @@ -349,7 +349,7 @@ cdef class Enumeration:
target_coord_dpe, sub_tree_, pruning_, dual)
sig_off()
if not self._fe_core.dpe.size():
raise EnumerationError("No vector found.")
raise EnumerationError("No solution found.")

solutions_dpe = self._fe_core.dpe.begin()
while solutions_dpe != self._fe_core.dpe.end():
Expand All @@ -375,7 +375,7 @@ cdef class Enumeration:
target_coord_dd, sub_tree_, pruning_, dual)
sig_off()
if not self._fe_core.dd.size():
raise EnumerationError("No vector found.")
raise EnumerationError("No solution found.")

solutions_dd = self._fe_core.dd.begin()
while solutions_dd != self._fe_core.dd.end():
Expand All @@ -400,7 +400,7 @@ cdef class Enumeration:
target_coord_qd, sub_tree_, pruning_, dual)
sig_off()
if not self._fe_core.qd.size():
raise EnumerationError("No vector found.")
raise EnumerationError("No solution found.")

solutions_qd = self._fe_core.qd.begin()
while solutions_qd != self._fe_core.qd.end():
Expand All @@ -425,7 +425,7 @@ cdef class Enumeration:
target_coord_mpfr, sub_tree_, pruning_, dual)
sig_off()
if not self._fe_core.mpfr.size():
raise EnumerationError("No vector found.")
raise EnumerationError("No solution found.")

solutions_mpfr = self._fe_core.mpfr.begin()
while solutions_mpfr != self._fe_core.mpfr.end():
Expand Down

0 comments on commit 3f17927

Please sign in to comment.