| author | bulwahn |
| Thu, 21 Oct 2010 19:13:11 +0200 | |
| changeset 40054 | cd7b1fa20bce |
| parent 39655 | 8ad7fe9d6f0b |
| child 40055 | 1f7cc5357d96 |
| permissions | -rw-r--r-- |
|
39616
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
wenzelm
parents:
39544
diff
changeset
|
1 |
use_thys [ |
|
39655
8ad7fe9d6f0b
splitting Predicate_Compile_Examples into Examples and Predicate_Compile_Tests
bulwahn
parents:
39616
diff
changeset
|
2 |
"Examples", |
|
8ad7fe9d6f0b
splitting Predicate_Compile_Examples into Examples and Predicate_Compile_Tests
bulwahn
parents:
39616
diff
changeset
|
3 |
"Predicate_Compile_Tests", |
|
39616
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
wenzelm
parents:
39544
diff
changeset
|
4 |
"Predicate_Compile_Quickcheck_Examples", |
|
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
wenzelm
parents:
39544
diff
changeset
|
5 |
"Specialisation_Examples", |
|
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
wenzelm
parents:
39544
diff
changeset
|
6 |
"IMP_1", |
|
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
wenzelm
parents:
39544
diff
changeset
|
7 |
"IMP_2", |
|
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
wenzelm
parents:
39544
diff
changeset
|
8 |
"IMP_3", |
|
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
wenzelm
parents:
39544
diff
changeset
|
9 |
"IMP_4"]; |
|
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
wenzelm
parents:
39544
diff
changeset
|
10 |
|
|
39544
3a07bbc264b2
replacing temporary hack by checking for environment settings of the component
bulwahn
parents:
39225
diff
changeset
|
11 |
if getenv "EXEC_SWIPL" = "" andalso getenv "EXEC_YAP" = "" then |
|
39616
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
wenzelm
parents:
39544
diff
changeset
|
12 |
(warning "No prolog system found - skipping some example theories"; ()) |
|
39544
3a07bbc264b2
replacing temporary hack by checking for environment settings of the component
bulwahn
parents:
39225
diff
changeset
|
13 |
else |
|
39616
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
wenzelm
parents:
39544
diff
changeset
|
14 |
(use_thys [ |
|
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
wenzelm
parents:
39544
diff
changeset
|
15 |
"Code_Prolog_Examples", |
|
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
wenzelm
parents:
39544
diff
changeset
|
16 |
"Context_Free_Grammar_Example", |
|
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
wenzelm
parents:
39544
diff
changeset
|
17 |
"Hotel_Example", |
|
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
wenzelm
parents:
39544
diff
changeset
|
18 |
"Lambda_Example", |
|
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
wenzelm
parents:
39544
diff
changeset
|
19 |
"List_Examples"]; |
|
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
wenzelm
parents:
39544
diff
changeset
|
20 |
Unsynchronized.setmp quick_and_dirty true use_thys ["Reg_Exp_Example"]); |
|
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
wenzelm
parents:
39544
diff
changeset
|
21 |