[Pharo-users] Re: Pharo Mars still not working on Ubuntu

2020-11-06 Thread kmo
Mars now loads on Ubuntu but crashes with illegal instruction when you attempt to use it. Back to where we were in late July. -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

[Pharo-users] Re: TeaTime replication ported to Pharo

2020-11-06 Thread Rafael Luque
Thank you all for these references. I'm going to study the TeaTime implementation from the Open Croquet version "restored" for Squeak by Nikolay Suslov and we'll share our experiments. Regarding BluePlane.xyz we are moving slowly. For the moment we have been playing with ideas like Scenario-Based

[Pharo-users] Re: Constraint solver in Pharo?

2020-11-06 Thread stephan
Replacing BTNGVariable>>#nextValue by nextValue     | nextValue |     self currentValue         ifNotNil: [valuesToExplore remove: self currentValue].     nextValue := self valuesToExplore ifEmpty: [ nil ]                 ifNotEmpty: [self valuesToExplore anyOne].     self currentValue: nextValue

[Pharo-users] Re: Constraint solver in Pharo?

2020-11-06 Thread Stéphane Ducasse
Hi stephan did you publish the code? > On 6 Nov 2020, at 15:12, stephan wrote: > > Replacing BTNGVariable>>#nextValue by > > nextValue > | nextValue | > self currentValue > ifNotNil: [valuesToExplore remove: self currentValue]. > nextValue := self valuesToExplore ifEmpty: [

[Pharo-users] Re: Constraint solver in Pharo?

2020-11-06 Thread Noury Bouraqadi
Thanx Stefan for the fix. Since there's some interest in this, I've migrated the code to GitHub and added a baseline. So, Stefan you can add your fix and make a PR :-) Noury On Nov 6 2020, at 3:58 pm, Stéphane Ducasse wrote: > Hi stephan did you publish the code? > > > On 6 Nov 2020, at 15:12, s

[Pharo-users] Re: Constraint solver in Pharo?

2020-11-06 Thread stephan
https://github.com/bouraqadi/BackTalkNG/pull/1 On 06-11-2020 17:34, Noury Bouraqadi wrote: Thanx Stefan for the fix. Since there's some interest in this, I've migrated the code to GitHub and added a baseline. So,  Stefan you can add your fix and make a PR :-) Noury On Nov 6 2020, at 3:58 pm,