diff options
author | dos-reis <gdr@axiomatics.org> | 2008-05-29 05:45:10 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2008-05-29 05:45:10 +0000 |
commit | a96dbac109e95cab66934e98c27e0d148a9b98fd (patch) | |
tree | 64d59bf968d21befe0011eff44971f50f7c86e69 /src/testsuite | |
parent | c196b86cfc4c3f9728f7c1448df2e9d6d6d6ebb7 (diff) | |
download | open-axiom-a96dbac109e95cab66934e98c27e0d148a9b98fd.tar.gz |
* interp/i-analy.boot (conceptualType): Only Mode, Domain, and
Category are conceptually abstract.
* testsuite/interpreter/category.input: Add a testcase.
Diffstat (limited to 'src/testsuite')
-rw-r--r-- | src/testsuite/interpreter/category.input | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/testsuite/interpreter/category.input b/src/testsuite/interpreter/category.input new file mode 100644 index 00000000..53cfc328 --- /dev/null +++ b/src/testsuite/interpreter/category.input @@ -0,0 +1,10 @@ +Domain has Category +Category has Category -- 'true', but it probably should be 'no'. +Category has Type + +ST(x: Integer): Category == + x=0 => SetCategory + Type + +ST 0 +ST 1 |