Re: Knowing CPU and memory usage

2011-07-10 Thread Sébastien Doeraene
Hi, Check this: http://www.mozart-oz.org/documentation/system/node58.html#chapter.property There are properties for inspecting memory usage. However, I do not know of a way to get CPU usage. Cheers, Sébastien On Sun, Jul 10, 2011 at 19:30, Khadija EL MAHRSI khadija.elmah...@gmail.com wrote:

Fwd: [scala-announce] Announcing Ozma: Extending Scala with Oz concurrency

2011-07-10 Thread Sébastien Doeraene
: Extending Scala with Oz concurrency To: Sébastien Doeraene sjrdoera...@gmail.com Dear Sebastien, You might want to let the Oz folks know that after 12 hours the Mac Ports installation of mozart does not complete the build process on Mac OS Snow Leopard on a 2.8GHz i7 Mac with 8 GB Memory. Best wishes

Re: Virtual String

2012-03-31 Thread Sébastien Doeraene
Sébastien Doeraene sjrdoera...@gmail.com Hi, Does this work correctly in the OPI? {System.showInfo {VirtualString.toString 'hello '#world}} If no: what's the behavior that you observe? If yes: can you provide us with a small code snippet that does not work on your machine, and the behavior

Re: Case semantic

2012-04-11 Thread Sébastien Doeraene
I'm not sure I understand what you mean by ASA. But if I do, then yes, you're right. Sébastien On Wed, Apr 11, 2012 at 17:25, Enrique Iurleo quiquewol...@gmail.comwrote: Yes i understand. So the ASA dont change? i mean only change the environment right? so in my example Y bound to x.1 in the

Re: Garbage collector

2012-04-11 Thread Sébastien Doeraene
Hi again, It's the latter that is true. The garbage collector can collect any variable that is not reachable anymore from any code (statement) that still has to be run. Hence, after %(A), the variable E(M) can indeed be collected. But that's assuming that garbage collection does run at this

Re: QTk Widgets

2012-05-04 Thread Sébastien Doeraene
not the ASCII codes or not. Because when I use {System.show Var}, I get the list of ASCII codes while the result I need is for the string in letters to be displayed. Thanks. 2012/5/4 Sébastien Doeraene sjrdoera...@gmail.com Hi, In Oz, a String *is* a list of numbers (the ASCII codes

Re: QTk Widgets

2012-05-04 Thread Sébastien Doeraene
khadija.elmah...@gmail.com wrote: What if I wanted to use the content of Var as an argument? 2012/5/4 Sébastien Doeraene sjrdoera...@gmail.com Use {System.showInfo Var} instead. Sébastien On Fri, May 4, 2012 at 6:21 PM, Khadija EL MAHRSI khadija.elmah...@gmail.com wrote: Hello, Yes, I've

Re: QTk Widgets

2012-05-04 Thread Sébastien Doeraene
', the result is always false. 2012/5/4 Sébastien Doeraene sjrdoera...@gmail.com It's up to the called procedure to use it in a way that is string-like. It's like in C with the 'char' type: it's used both for small integers and for characters. The interpretation is a consequence

Re: Mozart on 64-bit machine (running (Debian) Linux)?

2012-08-01 Thread Sébastien Doeraene
Hi, The codepad URL you provided is unreadable. However, I have almost the same as you (I use testing), and if I remember correctly, I started from the binary tarballs available at http://www.mozart-oz.org/download/view.cgi?action=tarversion=1.4.0 (take mozart and mozart-stdlib). I untared them

Re: Gump

2012-10-30 Thread Sébastien Doeraene
On Tue, Oct 30, 2012 at 3:01 PM, Torsten Anders torsten.and...@beds.ac.ukwrote: On 30 Oct 2012, at 11:26, alexgian wrote: The next step is the distribution subsystem. Mozart 2.0 has a reflective language interface, where you can write Oz code to change the semantics of language operations.

Re: Gump

2012-10-31 Thread Sébastien Doeraene
On Tue, Oct 30, 2012 at 11:27 PM, Torsten Anders torsten.and...@beds.ac.ukwrote: Unfortunately, ozh (the javadoc complement) is then also gone, because it depends on Gump. But once we have a full grammar of the Oz language itself then it would in principle be possible to port ozh. Wow,