Search the web
Sign In
New User? Sign Up
claireprogramminglanguage · Claire Programming Language - A place to discuss about the CLAIRE language
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 564 - 593 of 1160   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
564
... is available It solves two minor bugs found by FXJ :-) - -(-3) - import of cross-module global variables Cheers, -- Mr ClaireBugs...
clairebugs
Offline
Feb 22, 2003
11:20 am
565
Hi, CLAIRE can be used as a constraint programming language. I am curious: does CLAIRE has constraint stores? I ask this because some other constraint...
thomas_sg2000 <thomas...
thomas_sg2000
Offline Send Email
Feb 25, 2003
7:36 am
566
No, claire does not support the concept of constraints (hence not in a store). Claire has a backtrackable store, in which object, array or list modifications...
ycaseau
Offline
Mar 1, 2003
5:49 am
567
... I understand now. Thanks. ... Thanks for the pointer :) (CHOCO at http://www.choco-constraints.net/ ) ... ...
Tan Woon Kiong
thomas_sg2000
Offline Send Email
Mar 3, 2003
12:47 am
568
This new release fixes a few minor bugs that were reported on the forums during the last month. Cheers, -- Yves...
ycaseau
Offline
Mar 8, 2003
8:40 am
569
This new release is here and it replaces 3.3.10, which suffers from a regression bug on global variables :-( as was quickly found out by Etienne :-) Sorry...
clairebugs
Offline
Mar 17, 2003
5:18 am
570
.. in the Files directory of this site (for the newcomers) :-) It solves the bug that have been reported in the claire forum : ...
ycaseau
Offline
Apr 20, 2003
6:46 am
571
The 3.3.22 release is available in the Files section. It fixes the three bugs that have been reported in the bug section: - tuple inference - _import -...
clairebugs
Offline
Jun 14, 2003
5:26 pm
572
Hello everyone, Next month I will have some time to include some additional features or remove some annoying ones and to build the next (3.4) release. Since...
clairebugs
Offline
Jun 15, 2003
4:56 am
573
Hello Yves, We daily use all potential features/paradigms/concepts of Claire; in consequence we simply wish an upward compatibility for the forthcoming...
fxjosset
Offline
Jul 21, 2003
8:39 am
574
Hello everyone, the 3.3.24 release is available. It fixes: - the random bug on UNIX platforms (although this should be tested independently) - the bug from...
clairebugs
Offline
Aug 2, 2003
9:42 am
575
... Hello forum, In Claire we have the 'private' specifier that binds a symbol visibility to a module and its parts. It would be nice to have a 'static'...
ycaseau
Offline
Aug 3, 2003
6:35 am
576
Not to worry: upward compatibility is a given :-) -- Yves Caseau ... in ... are...
ycaseau
Offline
Aug 5, 2003
12:23 pm
577
Hello, I'm new to using CLAIRE and am havig some problems setting everything up. I've got CLAIRE and CHOCO installed and they seem to work but when I tried to...
paidi_creed
Offline Send Email
Aug 8, 2003
3:45 pm
578
Problem solved. I was using the wrong version of Iceberg....
paidi_creed
Offline Send Email
Aug 9, 2003
1:22 pm
579
Hi, Whenever I use any of the print functions in CLAIRE the word unknown is printed at the end of the output. Is this normal? Do I need to put in some...
paidi_creed
Offline Send Email
Aug 14, 2003
11:47 am
580
Hi, I'm trying to implement an object representing an objective in a map colouring problem with a set of preferences for each colour at each node. I want to be...
paidi_creed
Offline Send Email
Aug 14, 2003
6:33 pm
581
I solved my problem. I discovered make_table and used that to write the methods [makePreferencesObjective(prob:choco/Problem): PreferencesObjective -> // Seed...
paidi_creed
Offline Send Email
Aug 14, 2003
7:45 pm
582
Hi, you do not need to do anything. The unknown that you see is the last result that is printed by the interpreter. If you print in a file, or if you call your...
ycaseau
Offline
Aug 22, 2003
4:02 am
583
... the ... Hi, a couple of things: (1) getting a seg fault is a bug. If you can isolate your code please report it as a bug (clairebugs@...) (unless you...
ycaseau
Offline
Aug 22, 2003
4:10 am
584
... Thanks for the advice Yves. I don't think an array would do the job here, I'm using the table as a dictionary. Would it be better to use an array and a...
paidi_creed
Offline Send Email
Aug 22, 2003
5:56 pm
585
Hello everyone, Please find here a new version of CLAIRE: v3.3.26. It fixes the bug reported by Sylvain (safety 1 => seg fault) and includes a few goodies,...
clairebugs
Offline
Aug 30, 2003
10:33 am
586
I was having problems installing CLAIRE on Windows XP even though the environment variables were defined correctly. I:\Program Files\Claire\release>nmake /F...
igouy2
Offline
Oct 7, 2003
5:38 pm
587
Please help explain what things I'm doing wrong. (using unchanged init.cl from distribution release-3-3-28.zip file testmod.cl test :: module( part_of =...
igouy2
Offline
Oct 8, 2003
12:29 am
588
Hi, Just define your module in the init.cl file: testmod :: module( part_of = claire, made_of list("test") ) And remove the begin/end lines, these instruction...
thbenoist
Offline
Oct 8, 2003
6:03 am
589
... It didn't seem to like that? I:\pls\Claire>claire -cm testmod -- CLAIRE run-time library v 3.3.28 [os: ntv, C++:MS VC++ ] -- this is a init file for...
igouy2
Offline
Oct 8, 2003
2:59 pm
590
testmod :: module( part_of = claire, made_of = list<string>("test") )...
thbenoist
Offline
Oct 8, 2003
3:04 pm
591
... ("test") ) Thanks that's let me take a step forward. I:\pls\Claire>claire -cm testmod -- CLAIRE run-time library v 3.3.28 [os: ntv, C++:MS VC++ ] -- this...
igouy2
Offline
Oct 8, 2003
3:32 pm
592
Hi, Think to specify the source module's attribute : testmod :: module( part_of = claire, source = "." , made_of = list<string>("test") ) The default value of...
nmuseux
Offline
Oct 8, 2003
3:41 pm
593
... Ah! I see. ... Fixed with: testmod :: module( part_of = claire, source = ".", made_of = list<string>("test"), uses = list(claire) ) Two questions: 1) ...
igouy2
Offline
Oct 8, 2003
4:11 pm
Messages 564 - 593 of 1160   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help