From 7ea3569e3894f19fbae6cfdb3406f2240570e3c1 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 8 Dec 2022 15:03:51 -0500 Subject: Added a bunch of stuff for making LINGO puzzles --- lib/field.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib/field.cpp') diff --git a/lib/field.cpp b/lib/field.cpp index ad6d958..4b7fff6 100644 --- a/lib/field.cpp +++ b/lib/field.cpp @@ -110,7 +110,10 @@ namespace verbly { field::operator filter() const { - if (isJoin()) + if (type_ == type::hierarchal_join) + { + return filter(*this, filter::comparison::hierarchally_matches, filter()); + } else if (isJoin()) { return filter(*this, filter::comparison::matches, filter()); } else { -- cgit 1.4.1