-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #523 from Bram-Hub/dev
Spring 2023 Semester Pull Request
- Loading branch information
Showing
349 changed files
with
8,420 additions
and
7,334 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# modified from https://github.com/MathieuSoysal/Javadoc-publisher.yml | ||
|
||
name: Publish Javadoc | ||
|
||
on: | ||
push: | ||
branches: | ||
- dev | ||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Publish JavaDoc | ||
uses: MathieuSoysal/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
javadoc-branch: javadoc | ||
java-version: 11 | ||
target-folder: docs | ||
project: gradle |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
build/resources/test/puzzles/lightup/rules/BulbsInPathContradictionRule/BlockInVerticalPath
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<Legup> | ||
<puzzle name="LightUp"> | ||
<board width="3" height="3"> | ||
<cells> | ||
<cell value="-4" x="0" y="0"/> | ||
<cell value="-1" x="0" y="1"/> | ||
<cell value="-4" x="0" y="2"/> | ||
</cells> | ||
</board> | ||
</puzzle> | ||
</Legup> |
Empty file.
10 changes: 10 additions & 0 deletions
10
...d/resources/test/puzzles/lightup/rules/BulbsInPathContradictionRule/LightInHorizontalPath
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<Legup> | ||
<puzzle name="LightUp"> | ||
<board width="3" height="3"> | ||
<cells> | ||
<cell value="-4" x="0" y="0"/> | ||
<cell value="-4" x="2" y="0"/> | ||
</cells> | ||
</board> | ||
</puzzle> | ||
</Legup> |
10 changes: 10 additions & 0 deletions
10
build/resources/test/puzzles/lightup/rules/BulbsInPathContradictionRule/LightInVerticalPath
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<Legup> | ||
<puzzle name="LightUp"> | ||
<board width="3" height="3"> | ||
<cells> | ||
<cell value="-4" x="0" y="0"/> | ||
<cell value="-4" x="0" y="2"/> | ||
</cells> | ||
</board> | ||
</puzzle> | ||
</Legup> |
13 changes: 13 additions & 0 deletions
13
.../resources/test/puzzles/lightup/rules/CannotLightACellContradictionRule/CannotFillCorners
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<Legup> | ||
<puzzle name="LightUp"> | ||
<board width="3" height="3"> | ||
<cells> | ||
<cell value="-3" x="0" y="0"/> | ||
<cell value="-3" x="0" y="2"/> | ||
<cell value="-4" x="1" y="1"/> | ||
<cell value="-3" x="2" y="0"/> | ||
<cell value="-3" x="2" y="2"/> | ||
</cells> | ||
</board> | ||
</puzzle> | ||
</Legup> |
11 changes: 11 additions & 0 deletions
11
...d/resources/test/puzzles/lightup/rules/CannotLightACellContradictionRule/CannotFillMiddle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<Legup> | ||
<puzzle name="LightUp"> | ||
<board width="3" height="3"> | ||
<cells> | ||
<cell value="-4" x="0" y="0"/> | ||
<cell value="-3" x="1" y="1"/> | ||
<cell value="-4" x="2" y="2"/> | ||
</cells> | ||
</board> | ||
</puzzle> | ||
</Legup> |
Oops, something went wrong.