Tagged Questions
The Mozart Programming System is an advanced development platform for intelligent, distributed applications, utilizing the Oz programming language.
17
votes
4answers
3k views
Opinions on the Mozart/Oz programming language?
http://www.mozart-oz.org/
Yes I realize that Oz is a fairly obscure language. I first heard about it in the Programming Language Shootout. Then I found this Wikipedia article which states Mozart/Oz ...
2
votes
1answer
78 views
Check whether a tuple of variables cannot be constrained any further, in Mozart/Oz
Greetings,
The idea can be best given with an example:
Suppose we have a vector vec(a:{FD.int 1#100} b:{FD.int 1#100} c:{FD.int 1#100}).
I want to be able to add constraints to this vector, until ...
2
votes
2answers
134 views
Function and procedure behave differently with the same code in Mozart Oz?
I try printing out the Fibonacci sequence in Oz using 2 approach : funtion and procedure using Emac as editor.
Procedure goes here :
declare
fun {Fibo N}
case N of
1 then 1
[] 2 then ...
1
vote
1answer
158 views
How to create non-numeric constraints in Mozart/Oz?
I want to implement a CSP with the variables' domain being non-numeric (something like [lisa ann mary joanna] ). Is there a way to achieve this in Mozart/Oz?
0
votes
1answer
161 views
is there an new version of mozart/oz?
Would like to know if there is a new version of mozart/oz currently it is 1.4. That was in 2008. There has to have been progress.
0
votes
2answers
189 views
How do I convert an integer to a list and vice versa in Oz?
How do I convert an integer to a list and back in Oz? I need to take a number like 321 and reverse it into 123. The Reverse function in Oz only works on lists so I want to convert 321 to [3 2 1], ...
0
votes
3answers
472 views
How do I create a list in Oz?
I'm trying to create a list in Oz using the following code:
local Loop10 Xs in
proc {Loop10 I}
Xs={List.append Xs I}
if I == 10 then skip
else
{Browse I}
{Loop10 I+1}
...