-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix samples/rot13_concise + libxml compilation error
boehm_gc/.gitignore: Ignore .obj files extras/xml/xml.dtd.m: extras/xml/xml.parse.m: Change the name of functor ('1') in the multiplicity/0 type to one. The former name does not (yet) work with the C# grade. samples/.gitignore: Ignore library output and sample executables. samples/c_interface/standalone_c/.gitignore: Ignore mercury_lib_int output files. samples/c_interface/standalone_c/Makefile: chmod 0644. samples/c_interface/.gitignore: Ignore object files and executables. samples/java_interface/.gitignore: Ignore Java class files and executables. samples/lazy_list/.gitignore: samples/muz/.gitignore: samples/rot13/.gitignore: Ignore executables. samples/rot13/rot13_concise.m: Update call to index_det to use string.det_index. Added comments to clarify type inference. samples/solutions/.gitignore: Ignore executables. samples/solutions/all_solutions.m: samples/solutions/n_solutions.m: samples/solutions/one_solution.m: samples/solutions/some_solutions.m: chmod 0644. samples/solver_types/.gitignore: Ignore executables. samples/solver_types/sudoku.m: Output the solution in a 3x3 grid.
- Loading branch information
1 parent
a03ba31
commit 59ce153
Showing
15 changed files
with
69 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,7 +57,7 @@ | |
---> mixed(list(name)). | ||
|
||
:- type multiplicity | ||
---> ('1') | ||
---> one | ||
; ('*') | ||
; ('+') | ||
; ('?') | ||
|
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 @@ | ||
Mercury | ||
Mercury/** | ||
*.mh | ||
*.init | ||
*.err | ||
*.jar | ||
*.dll | ||
*.exe | ||
*.bat | ||
lib*.dylib | ||
lib*.dll | ||
lib*.so | ||
lib*.a | ||
hello | ||
calculator | ||
calculator2 | ||
cat | ||
e | ||
eliza | ||
expand_terms | ||
interpreter | ||
sort | ||
ultra_sub |
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,6 @@ | ||
c_main.o* | ||
c_main | ||
cpp_main.o* | ||
cpp_main | ||
mercury_main | ||
short_example |
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 @@ | ||
mercury_lib_int.[cho] |
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,2 @@ | ||
mercury_main | ||
my_package |
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 @@ | ||
lazy_list_test |
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 @@ | ||
muz |
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,5 @@ | ||
rot13_concise | ||
rot13_juergen | ||
rot13_gustavo | ||
rot13_ralph | ||
rot13_verbose |
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,4 @@ | ||
all_solutions | ||
n_solutions | ||
one_solution | ||
some_solutions |
Empty file.
Empty file.
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,2 @@ | ||
sudoku | ||
test_eqneq |
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