Oz is a multiparadigm programming language including logic, functional (both lazy and eager), imperative, object-oriented, constraint, distributed, and concurrent programming.
0
votes
1answer
27 views
Run Mozart/Oz system within GNU Emacs on OSX instead of Aquamacs
Is it possible to make Mozart/Oz system run within GNU Emacs on OSX instead of Aquamacs which I dislike? I tried copying /Applications/Emacs to /Applications/Aquamacs but had no luck.
12
votes
3answers
280 views
Dynamic typing and programming distributed systems
Coming from Scala (and Akka), I recently began looking at other languages that were designed with distributed computing in mind, namely Erlang (and a tiny bit of Oz and Bloom). Both Erlang and Oz are ...
0
votes
1answer
34 views
Argument error in my “For” loop code (Oz/Mozart)
I've started to learn Oz/Mozart recently, and for practice, I'm trying to write the code of a simple "For" procedure, that loops from "Init" to "End" values, and in each cycle print the current cycle ...
-1
votes
1answer
76 views
Why curly braces in procedure call in Oz language? [closed]
I'm learning about Oz language and it's many paradigms, but there's something I'm really curious and I didn't found anything about it. Why functions are embraced by {} in Oz?
fun {Fat n}
...
end
...
0
votes
1answer
62 views
How does these Pascal Triangle functions work?
I'm reading Concepts, Techniques, and Models of Computer Programming, and there's a code at the beginning that I just cannot understand no matter how hard I try.
declare Pascal AddList ShiftLeft ...
1
vote
1answer
48 views
How to write a simple higher order function in mozart oz?
I am a beginner in mozart oz, and I would like to write a simple higher order function, like {{Add 1}2}, the result of which has to be 3. I guess this is something like nested call in C, where a ...
2
votes
0answers
124 views
Translating Python code to Oz
Can somebody help me in translating this piece of Python code to Oz language?
def rep_subset_conditional(S, tset, index, t, count):
for i in xrange(index, len(S)):
tset += [S[i]]
tsum = ...
0
votes
1answer
51 views
Adding buffer type to “New buffer in mode”
When I choose the option "New buffer in mode" I'd like to open a buffer for an obscure programming language called oz. At the moment it is not in the list of buffer modes to choose from.
I have the ...
0
votes
1answer
58 views
applying non procedure and non object error
declare
fun {Factorial N}
local FactorialAux in
fun {FactorialAux N Product}
if N == 0 then Product
else {FactorialAux N-1 {fibo N}|Product}
end
end
{FactorialAux N ...
0
votes
0answers
32 views
Design by Contract in oz?
How can you use Design by Contract (DbC) in oz?
In detail
I just came across oz via the book Concepts, Techniques, and Models of Computer Programming and was disappointed that DbC was not ...
1
vote
0answers
79 views
Test for unification in Oz
What I want to do is, test if a certain expression unifies with another in Oz.
For example, I want to do something like this:
fun {UnifyP A B}
...
end
that can return true when A can be unified ...
2
votes
1answer
63 views
Is there a way to store function/procedure calls in Oz?
I want to know if there is a way to bind a whole function call in a variable in Oz.
For example, I do have:
fun {F1 A1 A2}
A1+A2
end
and a local variable X.
What I want to do, is store the ...
0
votes
1answer
152 views
How can I convert record to string in Mozart OZ
For example:
local A = aircraft(id:'Avro' size:[2 36] state:state(time:20 status:parked))
in
{Browse A}
end
I would like to convert A to string like Browse window in order to send the ...
0
votes
1answer
148 views
Ports and Cells in Oz
I'm taking a teach-yourself course at the university at the moment and noticed I bitten off a bit more than I can chew. The course is about the Oz programming language and I'm reading an e-book about ...
0
votes
1answer
86 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
144 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 ...
4
votes
7answers
1k 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
119 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 ...
3
votes
2answers
430 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
224 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?
3
votes
1answer
284 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
235 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)
2
votes
1answer
205 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
%**
%** ...
1
vote
1answer
308 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.
6
votes
1answer
647 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 ...
0
votes
2answers
243 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
786 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}
...
29
votes
5answers
4k views
Opinions on the Mozart/Oz programming language? [closed]
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 ...
