Tagged Questions
Oz is a multiparadigm programming language including logic, functional (both lazy and eager), imperative, object-oriented, constraint, distributed, and concurrent programming.
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 ...
5
votes
1answer
469 views
Tail-recursion optimization in Oz
In the chapter about function in the Oz tutorial, it says that:
similar to lazy functional languages
Oz allows certain forms of
tail-recursion optimizations that are
not found in certain ...
4
votes
6answers
465 views
What is the best programming language to implement neural networks?
I'm not looking for a Neural Networks library, since I'm creating new kinds of networks. For that I need a good "dataflow" language.
Of course you can do this in C, C++, Java and co. but dealing ...
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?
1
vote
1answer
107 views
andthen Oz keyword
I'm trying to write a tokenizer, but I'm getting a parse error:
%*************************** parse error ************************
%**
%** syntax error, unexpected T_DEFAULT, expecting T_then
%**
%** ...
0
votes
1answer
45 views
Function recursion, what happens in the SAS?
I have this scenario: a recursive procedure (or function) is called like
{DoSomething Data C}
and C is the variable that should store the final result, the function prototype is
proc {DoSomething ...
0
votes
1answer
52 views
OZ Programming language: Boolean guard
I am taking a subject at school which require us to use the Mozart Programming Interface. I do not really think much of it so far. But anyways, here is the question:
In OZ you are only allowed to ...
0
votes
1answer
159 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
0answers
156 views
Translate oz code to kernel language
How to translate this part of Oz code to kernel language and how to draw parse tree of translated code? This is my homework on Tuesday. :-)
f(a Q W) = f(A q W)
0
votes
1answer
143 views
Convert list to a string in Oz?
How to convert a list to a string in Oz?
I have a list of characters I need to convert to a string and I didn't see any concatenation operator in the Oz documentation.
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}
...