Small observation re. (gt0 X) and ( X 0)

2013-11-15 Thread Jon Kleiser
Hi, If you read the docs carefully, you may know that (gt0 X) and ( X 0) are NOT equivalent. This is my small observation today: X:1 T --- (gt0 X) - 1 NIL ( X 0) - T T Have a nice weekend! /Jon -- UNSUBSCRIBE:

Re: Small observation re. (gt0 X) and ( X 0)

2013-11-15 Thread Thorsten Jolitz
Jon Kleiser jon.klei...@usit.uio.no writes: Hi Jon, If you read the docs carefully, you may know that (gt0 X) and ( X 0) are NOT equivalent. This is my small observation today: X:1 T --- (gt0 X) - 1 NIL ( X 0) - T T Have a nice weekend! Surprising at

Re: Small observation re. (gt0 X) and ( X 0)

2013-11-15 Thread Alexander Burger
Hi Jon, If you read the docs carefully, you may know that (gt0 X) and ( X 0) are NOT equivalent. This is my small observation today: X:1 T --- (gt0 X) - 1 NIL ( X 0) - T T Yes, very true. Thanks for reminding about it! This is in fact the intended

Adding relation

2013-11-15 Thread Henrik Sarvell
Hi, I'm trying to add a relation, at first I added (rel newRel (+String)) to the class, and then put newRel in the dbs. That didn't work though, information refused to get saved so I changed the rel call to (rel newRel (+Ref +String)) but still the database refuses to store anything in newRel

Re: Adding relation

2013-11-15 Thread Alexander Burger
Hi Henrik, Hi, I'm trying to add a relation, at first I added (rel newRel (+String)) to the class, and then put newRel in the dbs. Right, though adding to 'dbs' makes only sense for indexes (i.e. as you did with the (rel newRel (+Ref +String)) below). That didn't work though, information