Skip to content

Commit 44f7506

Browse files
Move /sudoku to /games/sudoku
1 parent 094212d commit 44f7506

17 files changed

+4
-4
lines changed

WORKSPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ pip_install(
147147

148148
pip_install(
149149
name = "sudoku_pip",
150-
requirements = "//sudoku:requirements.txt"
150+
requirements = "//games/sudoku:requirements.txt"
151151
)
152152

153153
# Load java example dependencies
File renamed without changes.
File renamed without changes.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ If not, you'll have to install the dependencies using:
1616
### Running the solver
1717
Through bazel:
1818

19-
`bazel run //sudoku:driver -- (<sudoku-path|setup>)`
19+
`bazel run //games/sudoku:driver -- (<sudoku-path|setup>)`
2020
Directly:
2121

2222
`python driver.py (<sudoku-path>|setup)`
2323

2424
Running with
2525
* `setup` will (re)create the database and load the required schema & data.
2626
* `<sudoku-path>` will solve the sudoku in the specified file. It will also run setup if required.
27-
- When running through bazel, use the path to the samples is: `sudoku/sample/sudoku*.txt`.
27+
- When running through bazel, use the path to the samples is: `games/sudoku/sample/sudoku*.txt`.
2828

2929
### Running tests
30-
`bazel test //sudoku:test` or `python test.py`
30+
`bazel test //games/sudoku:test` or `python test.py`
3131

3232
## Defining the sudoku file
3333
The file specified through the `sudoku-path` argument must contain a space

0 commit comments

Comments
 (0)