Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LEGUP 6.0.1 Push #776

Merged
merged 22 commits into from
Apr 2, 2024
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift click to select a range
90aa66b
Removed all Inno Setup related code
charlestian23 Feb 23, 2024
980445c
Merge branch 'dev' into inno-setup-removal
charlestian23 Feb 23, 2024
176e3ad
Merge pull request #743 from charlestian23/inno-setup-removal
Chase-Grajeda Feb 23, 2024
76bdd7d
Update javadoc java version (#744)
FisherLuba Feb 23, 2024
4257dd0
Create GridRegion.java
Chase-Grajeda Feb 27, 2024
5726c76
Adding FinishWithEmptyDirectRule test cases
jadeandtea Feb 27, 2024
264b326
Adding test case to TestRunner
jadeandtea Feb 27, 2024
f376817
Merge branch 'dev' into LightUp-Test-Suite-Additions
jadeandtea Feb 27, 2024
838272e
Merge branch 'master' into dev
charlestian23 Mar 27, 2024
6054db7
Improved auto-formatter behavior (#781)
charlestian23 Mar 29, 2024
5452703
Finishing Short Truth Table Contradiction Rule tests (#713)
charlestian23 Mar 29, 2024
3541a9b
Short Truth Table remaining case rules (#737)
charlestian23 Mar 29, 2024
80280db
Automated Java code formatting changes (#783)
github-actions[bot] Mar 29, 2024
0200a26
Merge branch 'dev' into LightUp-Test-Suite-Additions
Chase-Grajeda Mar 29, 2024
b1c8c2f
Merge pull request #748 from jadeandtea/LightUp-Test-Suite-Additions
Chase-Grajeda Mar 29, 2024
9270d0e
Automated Java code formatting changes (#786)
github-actions[bot] Mar 30, 2024
2ad0fd7
Finish room case rule attempt (#717)
cadogs Apr 2, 2024
e519c8e
Issue 555 bug fix: bizarre Satisfy Number behavior (#755)
charlestian23 Apr 2, 2024
e6ff803
Automated Java code formatting changes (#787)
github-actions[bot] Apr 2, 2024
ef00322
Finish room case rule attempt (#788)
cadogs Apr 2, 2024
f6817c3
Oops lol
charlestian23 Apr 2, 2024
4781736
Automated Java code formatting changes (#792)
github-actions[bot] Apr 2, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Oops lol
  • Loading branch information
charlestian23 committed Apr 2, 2024
commit f6817c395b5cafa3d6985cee14c9f381dcd084c8
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 119,7 @@ public CaseBoard getCaseBoard(Board board) {
* @return a list of elements the specified could be
*/
@Override
public ArrayList<Board> getCases(
Board board, PuzzleElement puzzleElement) { // throws IllegalStateException {
public ArrayList<Board> getCases(Board board, PuzzleElement puzzleElement) {
ArrayList<Board> cases = new ArrayList<>(); // makes array list of cases
NurikabeBoard nuriBoard = (NurikabeBoard) board.copy(); // nurikabe board to edit
NurikabeCell numbaCell =
Expand Down Expand Up @@ -175,7 174,7 @@ public ArrayList<Board> getCases(
// it again and accidentally add
if (curr.getType()
== NurikabeType
.UNKNOWN) { // found adjacent space to region that is currently
.UNKNOWN) { // found adjacent space to region that is currently
// unknown
curr.setData(
NurikabeType.WHITE.toValue()); // changes adjacent cell color to white
Expand Down Expand Up @@ -225,6 224,7 @@ public ArrayList<Board> getCases(
}
}
legitCases = cases.size();
}
return cases;
}

Expand All @@ -241,4 241,4 @@ public ArrayList<Board> getCases(
public String checkRuleRawAt(TreeTransition transition, PuzzleElement puzzleElement) {
return null;
}
}
}
Loading