Search the web
Sign In
New User? Sign Up
KR-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 275 - 305 of 712   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
275
MKE version 6.7 adds two new control structures: while and until. For example: set finished = no; while $finished is no { ... set finished = yes; ... }; set...
Richard H. McCullough
rhmcc
Offline Send Email
Jun 29, 2005
6:16 pm
276
MKE 6.7 now includes (Jul/30/2005) an augmented "every" control structure, similar to that of Unicon. For example: every i from 1 to 10 { do print od $i done; ...
Richard H. McCullough
rhmcc
Offline Send Email
Jul 31, 2005
12:58 am
277
MKE 6.7 (Jul/31/2005) provides for local variables in methods and relations. Local variables are useful for avoiding name conflicts when executing nested ...
Richard H. McCullough
rhmcc
Offline Send Email
Jul 31, 2005
6:44 pm
278
Although I designed MKR to use numbered arguments to be consistent with the UNIX shell, I implemented MKE in a way that actually permits you to use named...
Richard H. McCullough
rhmcc
Offline Send Email
Aug 1, 2005
3:37 pm
280
MKE 6.7 (Aug/5/2005) permits the use of and,or,not in "if" statements. The propositions associated with and,or,not are enclosed in braces. The example below...
Richard H. McCullough
rhmcc
Offline Send Email
Aug 5, 2005
8:23 pm
281
I have updated the tutorial to include how to interface with method and relation meanings which are implemented as Unicon procedures the new features...
Richard H. McCullough
rhmcc
Offline Send Email
Aug 7, 2005
1:25 am
282
Why the new syntax? When I invented MKR in 1996, I decided NOT to allow name[char] because it is not English-like. I have three reasons for changing my mind....
Richard H. McCullough
rhmcc
Offline Send Email
Aug 14, 2005
8:13 pm
283
Of course I should have said x isu list of number; y isu list of color; ... <rhm@c...>...
Richard H. McCullough
rhmcc
Offline Send Email
Aug 14, 2005
10:34 pm
284
Of course I should have said x isu list of number; y isu list of color; ... <rhm@c...>...
Richard H. McCullough
rhmcc
Offline Send Email
Aug 14, 2005
10:35 pm
285
I added a makefile to the KEHOME/knowledge/applications/Genealogy directory so that you can easily add your own personalized report script. Dick McCullough ...
Richard H. McCullough
rhmcc
Offline Send Email
Aug 18, 2005
12:08 am
286
Here's a quick summary of current MKR/MKE capability using the new associative array syntax. You can download the new kewin.zip from my web site. Basic...
Richard H. McCullough
rhmcc
Offline Send Email
Aug 19, 2005
9:59 am
287
It's no longer plans for the future. I just used this MKR program http://rhm.cdepot.net/knowledge/applications/Genealogy/email.mkr to generate a "report" from...
Richard H. McCullough
rhmcc
Offline Send Email
Aug 24, 2005
1:02 pm
288
I have added many new sections to the tutorial. http://rhm.cdepot.net/doc/MKEtutorial.html Much of this material was previously documented only in emails. Some...
Richard H. McCullough
rhmcc
Offline Send Email
Aug 31, 2005
6:12 am
289
When the meaning of a method is interpreted, $0 is set equal to the name of the event (this instance of execution of the method). Likewise, when the meaning of...
Richard H. McCullough
rhmcc
Offline Send Email
Aug 31, 2005
6:27 am
290
I have made significant improvements in the overview of MKR syntax http://rhm.cdepot.net/doc/MKRintro.html I recommend that you read this new version. Dick...
Richard H. McCullough
rhmcc
Offline Send Email
Aug 31, 2005
4:51 pm
291
hdo and vdo are now fully functional, using exactly the same syntax as do. The meaning of "vdo ... done;" is simple. Remove the "v", and execute the resulting ...
Richard H. McCullough
rhmcc
Offline Send Email
Sep 15, 2005
5:24 am
292
First a couple of quick notes, then a final example. 1. I changed the MKR concept "VERB" to "verb". 2. I added a new function prop2verb(property) which returns...
Richard H. McCullough
rhmcc
Offline Send Email
Sep 18, 2005
7:16 pm
293
I inadvertently added "definitions" to the simplified triple language. For the second line of the final example, I should have said ClassOfAbstractObject isu...
Richard H. McCullough
rhmcc
Offline Send Email
Sep 18, 2005
7:47 pm
294
Given the continuing popularity of the triple format, I decided to offer you my own brand: Mtriples. Because Mtriples is a subset of the MKR language, it is...
Richard H. McCullough
rhmcc
Offline Send Email
Sep 20, 2005
4:28 pm
295
Correction: {myverb isu verb;} is not quite right. You actually need to use myverb isu verb with ctype=binary relation; And just what does "binary relation"...
Richard H. McCullough
rhmcc
Offline Send Email
Sep 21, 2005
1:19 am
296
I just remembered that I have one "workaround" for the infinite loop problem. I ran into this same problem with the OpenCyc KB. They have half a dozen ...
Richard H. McCullough
rhmcc
Offline Send Email
Sep 22, 2005
5:26 pm
297
I have just implemented the following convention in MKR/MKE. "i" is the qualifier for individuals. "i" is short, so MKR readability is still good. It's very...
Richard H. McCullough
rhmcc
Offline Send Email
Sep 24, 2005
9:23 pm
298
Forget about the RDF/OWL distinction. Just enter kformat := mtriple; and MKE will load all the verbs (properties) for both RDF and OWL. Dick McCullough ...
Richard H. McCullough
rhmcc
Offline Send Email
Sep 24, 2005
11:55 pm
299
Since human beings have built-in "hardware" for recognizing similarities and differences between objects, they often form concepts on an ad-hoc basis, without...
Richard H. McCullough
rhmcc
Offline Send Email
Sep 25, 2005
9:11 pm
300
MKE now uses the Merr error message system which was developed for the Unicon compiler. The yyerror() procedure prints file name line number input token...
Richard H. McCullough
rhmcc
Offline Send Email
Sep 26, 2005
4:25 am
301
I have never been happy about calling a set "Set". Today I settled on a fairly painless way to fix that. change group name from "Set" to "set" change verb...
Richard H. McCullough
rhmcc
Offline Send Email
Sep 27, 2005
10:51 pm
302
I have put together a description of the world view (entity-characteristic-proposition hierarchy, including all predefined entities and properties) for each of...
Richard H. McCullough
rhmcc
Offline Send Email
Sep 28, 2005
1:05 am
303
Since no one is knocking at my door to use my MKR language, I have decided to undertake a serious effort to make MKR/MKE accommodate RDF, OWL, CycL. 1. Along...
Richard H. McCullough
rhmcc
Offline Send Email
Sep 28, 2005
11:51 pm
304
OK, let's get really specific. If you have only existent existent there's really nothing to say. If you distinguish existent / entity / characteristic /...
Richard H. McCullough
rhmcc
Offline Send Email
Sep 29, 2005
1:36 am
305
I must apologize for my tendency to leap to conclusions, and skip some essential steps. So I will back up and start again from the beginning. 1. "existents...
Richard H. McCullough
rhmcc
Offline Send Email
Sep 30, 2005
8:15 am
Messages 275 - 305 of 712   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