fix solution word error
This commit is contained in:
parent
2dc194cd81
commit
04e82d0d60
@ -301,7 +301,7 @@ def create_word_grid(w: int, h: int, lang_code: str = "en", target_density: floa
|
|||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def get_solution_word(min_length=10, max_length=100):
|
def get_solution_word(min_length=15, max_length=100):
|
||||||
word = get_word(min_length=min_length, max_length=max_length)
|
word = get_word(min_length=min_length, max_length=max_length)
|
||||||
|
|
||||||
# search for matching characters in locations
|
# search for matching characters in locations
|
||||||
@ -368,7 +368,7 @@ def create_word_grid(w: int, h: int, lang_code: str = "en", target_density: floa
|
|||||||
|
|
||||||
current_density = density()
|
current_density = density()
|
||||||
|
|
||||||
solution_word_locations = get_solution_word(min_length=min(min_shape//2, 15))
|
solution_word_locations = get_solution_word()
|
||||||
|
|
||||||
logging.info("crossword generation done after %s iterations", str(i))
|
logging.info("crossword generation done after %s iterations", str(i))
|
||||||
return grid, word_hints, solution_word_locations
|
return grid, word_hints, solution_word_locations
|
||||||
|
Loading…
Reference in New Issue
Block a user