-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsumo2loom.cc
1301 lines (1183 loc) · 39.6 KB
/
sumo2loom.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// $Id: sumo2loom.cc,v 1.52 2002/11/06 15:58:53 dflater Exp $
// This software was developed at the National Institute of Standards
// and Technology by employees of the Federal Government in the course
// of their official duties. Pursuant to title 17 Section 105 of the
// United States Code this software is not subject to copyright
// protection and is in the public domain.
//
// You can redistribute it and/or modify it freely provided that any
// derivative works bear some notice that they are derived from it,
// and any modified versions bear some notice that they have been
// modified. We would appreciate acknowledgement if the software is
// used.
//
// This software is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. NIST does not
// assume legal liability or responsibility for anything done with
// this software.
#include "header.hh"
// Generate line number printouts for debugging?
#undef COUNT_BUGS
// Do you want everything inside one big tell command or do you want
// separate tells for each assertion?
#undef ONE_BIG_TELL
// Enable problematic code having to do with disjoint coverings.
#undef DISJOINTS
// Enable unrolling of @ROW instead of rejecting it?
#define UNROLL_ROWS
// @ROW variables must be unrolled ?ROW1, ?ROW1 ?ROW2, ... etc. up to
// some limit. This is that limit.
#define ROW_VARIABLE_UNROLLING_LIMIT 5
// String used to initialize elements in the domain vectors. In theory
// you should never see this appear in the output.
#define DOMAINFILLER "******ERROR******"
#ifdef COUNT_BUGS
unsigned long bug_count = 0;
#endif
// struct cstruct is used to accumulate the information needed to
// generate a defconcept statement.
struct cstruct {
std::set<Dstr> isa;
Dstr partitions;
bool primitive;
};
// struct rstruct is used to accumulate the information needed to
// generate a defrelation statement.
struct rstruct {
std::set<Dstr> isa;
unsigned arity;
std::vector<Dstr> domain;
Dstr range;
Dstr inverse;
bool symmetric;
bool commutative;
};
// This table is used in translate_proposition. It is also used in
// note_rejects, but only to determine which of the things that have
// Formula in their domain should be tolerated. (If it's in this
// table, it must be tolerable.) The third column is used in
// determining which implications are translatable.
#define numreps 8
char *prop_direct_replacements[numreps][3] = {
{"and", ":and", "t"},
{"or", ":or", "t"},
{"not", ":fail", "t"},
// {"exists", ":for-some", "t"},
// {"forall", ":for-all", "t"},
{"=>", ":implies", "t"},
{"equal", "=", NULL},
{"instance", "instance-of", NULL},
{"subrelation", "superrelations", NULL},
{"subclass", "superrelations", NULL}};
// The previous line looks like a cut-and-paste error but it's not.
// superrelations does concepts too.
// add_parent
// in: isa, set of parents
// newparent, the new parent
// myname, the name of the inheritee
// out: isa, possibly modified
// Attempts to duplicate are flagged.
void add_parent (std::set<Dstr> &isa, Dstr &newparent, const Dstr &myname) {
std::set<Dstr>::iterator it = isa.find(newparent);
if (it != isa.end())
fprintf (stderr, "Warning: %s asserted to inherit from %s more than once\n",
myname.aschar(), newparent.aschar());
else
isa.insert (newparent);
}
// genpsym
// in: buf, contents irrelevant.
// out: buf, containing a unique name for a new LOOM partition
// (over 4 billion served).
void genpsym (Dstr &buf) {
static unsigned long s = 1;
buf = "$PARTITION_";
buf += s++;
buf += '$';
}
// comment_out
// in: buf, containing a single SUO-KIF statement.
// out: buf, containing that statement, commented out.
void comment_out (Dstr &buf) {
buf.repstr ("\n", "\n;; ");
assert (buf.length() > 3);
assert (!strncmp (buf.ascharfrom(buf.length()-3), ";; ", 3));
buf -= buf.length()-3;
buf *= ";; ";
}
// note_rejects
//
// in: buf, containing a single SUO-KIF statement.
// rejects, accumulated rejected functions/relations/predicates.
// out: buf, contents unspecified.
// rejects, possibly with new stuff added.
//
// see also, unsupported.
void note_rejects (Dstr &buf, std::map<Dstr, Dstr *> &rejects) {
if (buf[0] != '(')
return;
buf /= 1;
Dstr arg0;
buf /= arg0;
if (arg0 == "domain") {
Dstr arg1, arg2, arg3;
buf /= arg1;
buf /= arg2;
buf /= arg3;
if (arg3 == "Formula") {
for (unsigned i=0; i<numreps; i++)
if (arg1 == prop_direct_replacements[i][0])
return; // You're allowed.
if (arg1 == "<=>" || arg1 == "exists")
return; // You're allowed too.
Dstr *reason = rejects[arg1];
if (!reason) {
assert (reason = new Dstr());
if (arg1 == "forall")
*reason = "translates to uncomputable Loom query expressions";
else
*reason = "has Formula in its domain";
rejects[arg1] = reason;
}
}
} else if (arg0 == "instance") {
Dstr arg1, arg2;
buf /= arg1;
buf /= arg2;
if (arg2 == "VariableArityRelation" && arg1 != "ListFn") {
Dstr *reason = rejects[arg1];
if (!reason) {
assert (reason = new Dstr ("is a VariableArityRelation"));
rejects[arg1] = reason;
}
}
}
}
// find_or_create
// in: defrelations, accumulated relation information.
// rname, name of relation wanted.
// out: defrelations, possibly with new relation added.
// return value, pointer to the rstruct for rname.
rstruct *find_or_create (std::map<Dstr, rstruct *> &defrelations, Dstr &rname)
{
rstruct *r = defrelations[rname];
if (!r) {
assert (r = new rstruct);
defrelations[rname] = r;
r->arity = 0;
r->symmetric = r->commutative = false;
}
return r;
}
// find_or_create
// in: defconcepts, accumulated concept information.
// cname, name of concept wanted.
// out: defconcepts, possibly with new concept added.
// return value, pointer to the cstruct for cname.
cstruct *find_or_create (std::map<Dstr, cstruct *> &defconcepts, Dstr &cname)
{
cstruct *c = defconcepts[cname];
if (!c) {
assert (c = new cstruct);
defconcepts[cname] = c;
c->primitive = true;
}
return c;
}
// add_tell
// in: buf, containing a translated statement.
// body, accumulated tells for the "body" of the output.
// out: buf, contents indeterminate.
// body, with the contents of buf added as a new tell.
void add_tell (Dstr &buf, Dstr &body) {
#ifndef ONE_BIG_TELL
buf *= "(tell ";
if (buf[buf.length()-1] == '\n')
buf -= buf.length()-1;
buf += ")\n";
#ifdef COUNT_BUGS
body += "(print '(bug ";
body += bug_count++;
body += "))\n";
#endif
#endif
body += buf;
}
// extract_vars {recursive}
// in: vars, a set to get the variables.
// l, the Suo-Kif statement or portion thereof.
// out: vars, with variables added.
//
// This function was reverted from the extract_free_vars in rev 1.48
// back to the dumb implementation of rev. 1.32 when it became clear
// that nested quantifiers never work anyway.
//
void extract_vars (std::set<Dstr> &vars, const Dstr &l) {
assert (!(l.isNull()));
switch (l[0]) {
case '(':
{
Dstr remainder(l), arg;
remainder /= 1;
remainder /= arg;
while (!(arg.isNull())) {
extract_vars (vars, arg);
remainder /= arg;
}
}
break;
case '?':
vars.insert (l);
break;
default:
;
}
}
// check_word
// in: word, the word to check.
// words, the words to find.
// out: if found, returns pointer to the first component of
// the relevant element in the words map. Otherwise, NULL.
const Dstr *check_word (const Dstr &word, std::map<Dstr, Dstr *> &words) {
std::map<Dstr, Dstr *>::iterator it = words.begin();
while (it != words.end()) {
if (word == it->first)
return &(it->first);
it++;
}
return NULL;
}
// find_words {recursive}
// in: buf, the Suo-Kif statement or portion thereof.
// words, the words to find.
// applied, true if only looking for position 1.
// excepted, true if top-level application is exempt.
// out: if found, returns pointer to the first component of
// the relevant element in the words map. Otherwise, NULL.
const Dstr *find_words (const Dstr &buf, std::map<Dstr, Dstr *> &words,
bool applied, bool excepted) {
assert (!(buf.isNull()));
if (buf[0] == '(') {
Dstr remainder(buf), arg;
remainder /= 1;
remainder /= arg;
if (arg[0] != '(') {
if (!excepted) {
const Dstr *r = check_word (arg, words);
if (r)
return r;
}
remainder /= arg;
}
while (!(arg.isNull())) {
const Dstr *r = find_words (arg, words, applied, false);
if (r)
return r;
remainder /= arg;
}
return NULL;
} else {
if (applied)
return NULL;
else
return check_word (buf, words);
}
}
// do_renamings
// in: buf, containing a Suo-Kif or Loom statement.
// out: buf, with words replaced. See comments below.
//
// Logical operators are replaced in translate_proposition, not here.
void do_renamings (Dstr &buf) {
// Clashes with builtins.
buf.repstr ("Character", "Sumocharacter");
buf.repstr ("Class", "Sumoclass");
buf.repstr ("Collection", "Sumocollection");
buf.repstr ("domain", "sumodomain");
buf.repstr ("Function", "Sumofunction");
buf.repstr ("Integer", "Sumointeger");
buf.repstr ("List", "Sumolist");
buf.repstr ("Number", "Sumonumber");
buf.repstr ("Proposition", "Sumoproposition");
buf.repstr ("property", "sumoproperty");
buf.repstr ("range", "sumorange");
buf.repstr ("Relation", "Sumorelation");
buf.repstr ("Set", "Sumoset");
buf.repstr ("Sequence", "Sumosequence");
buf.repstr ("subset", "Sumosubset");
buf.repstr ("disjoint", "sumodisjoint");
buf.repstr ("documentation", "sumodocumentation");
buf.repstr ("inverse", "sumoinverse");
// Case sensitivity clashes.
buf.repstr ("agent", "agent-rel"); // agent != Agent
buf.repstr ("attribute", "attribute-rel"); // attribute != Attribute
// Replace interesting Fns with LOOM builtins.
buf.repstr ("(SumolistFn ", "(:the-list ");
buf.repstr ("(SumolistFn\n", "(:the-list\n");
buf.repstr ("(SumolistFn(", "(:the-list (");
}
// do_additional_setfn_renamings
// in: buf, containing a Suo-Kif or Loom statement.
// out: buf, with words replaced.
//
// UnionFn and IntersectionFn are needed for :domain and :range but
// cause trouble for implications.
void do_additional_setfn_renamings (Dstr &buf) {
buf.repstr ("(UnionFn ", "(:or ");
buf.repstr ("(UnionFn\n", "(:or\n");
buf.repstr ("(UnionFn(", "(:or (");
buf.repstr ("(IntersectionFn ", "(:and ");
buf.repstr ("(IntersectionFn\n", "(:and\n");
buf.repstr ("(IntersectionFn(", "(:and (");
}
// translate_proposition {recursive}
// in: buf, containing a SUO-KIF proposition.
// out: buf, possibly containing a translation of that proposition.
// return value, true iff proposition is "hairy."
//
// A proposition is "hairy" if it would require a :satisfies to express
// it in Loom. You cannot use :satisfies on both sides of a Loom
// implies statement.
//
// This function does not invoke do_renamings or create new
// definitions.
bool translate_proposition (Dstr &buf) {
bool ret = false;
if (buf[0] != '(')
return false;
bool newlterm = (buf[buf.length()-1] == '\n');
Dstr arg0, remainder(buf);
remainder /= 1; // Skip paren
remainder /= arg0;
for (unsigned i=0; i<numreps; i++) {
if (arg0 == prop_direct_replacements[i][0]) {
ret = (prop_direct_replacements[i][2] != NULL);
buf = '(';
buf += prop_direct_replacements[i][1];
Dstr argn;
remainder /= argn;
while (!(argn.isNull())) {
if (translate_proposition (argn))
ret = true;
buf += ' ';
buf += argn;
remainder /= argn;
}
buf += ')';
if (newlterm)
buf += '\n';
return ret;
}
}
if (arg0 == "<=>") {
Dstr arg1, arg2;
remainder /= arg1;
remainder /= arg2;
translate_proposition (arg1);
translate_proposition (arg2);
buf = "(:and (:implies ";
buf += arg1;
buf += ' ';
buf += arg2;
buf += ") (:implies ";
buf += arg2;
buf += ' ';
buf += arg1;
buf += "))";
if (newlterm)
buf += '\n';
return true;
} else if (arg0 == "exists") {
// We are going to have an enclosing :for-some anyway so this
// one can be scrapped.
Dstr arg1, arg2;
remainder /= arg1;
remainder /= buf;
translate_proposition (buf);
if (newlterm)
buf += '\n';
return true;
} else {
// Generic (some-rel X Y): X or Y could be hairy.
buf = '(';
buf += arg0;
Dstr argn;
remainder /= argn;
while (!(argn.isNull())) {
if (translate_proposition (argn))
ret = true;
buf += ' ';
buf += argn;
remainder /= argn;
}
buf += ')';
if (newlterm)
buf += '\n';
return ret;
}
}
// translate_arrow
//
// A top level => is an assertion that translates to (implies.
// A lower level => is a proposition that translates to (:implies.
// This function only does the former.
//
// in: arg1 and arg2, the antecedent and consequent.
// out, contents irrelevant.
// orig_statement, containing the original Suo-Kif statement.
// out: out, containing a translation if one exists.
// null means that it was too hairy to translate.
void translate_arrow (const Dstr &arg1_in, const Dstr &arg2_in, Dstr &out,
const Dstr &orig_statement) {
assert (!(arg1_in.isNull()));
assert (!(arg2_in.isNull()));
Dstr antecedent(arg1_in), consequent(arg2_in);
if (translate_proposition (consequent))
out = (char *)NULL;
else {
translate_proposition (antecedent);
// Get variables in the hairy one.
assert (antecedent[0] == '(');
std::set<Dstr> antecedentvars;
extract_vars (antecedentvars, antecedent);
// Get everything in consequent.
// Although we needed to call translate_proposition to determine
// that the consequent was simple, we don't actually want to use
// the result because we can't assert against Loom's builtin
// relations (instance-of, =, etc.).
// Dstr remainder (consequent);
Dstr remainder (arg2_in);
assert (remainder[0] == '(');
remainder /= 1; // Skip paren
std::vector<Dstr> consequentargs;
Dstr consequentfn, temparg;
remainder /= consequentfn; // Save the fn for later.
remainder /= temparg;
while (!(temparg.isNull())) {
consequentargs.push_back (temparg);
remainder /= temparg;
}
if (!(antecedentvars.size()) || !(consequentargs.size())) {
fprintf (stderr, "Error: I just *know* this is missing a variable somewhere:\n%s", orig_statement.aschar());
exit (-1);
}
// Generate the verbiage.
Dstr satisfies ("(:satisfies (");
for (unsigned i1=0; i1<consequentargs.size(); i1++) {
if (i1)
satisfies += ' ';
satisfies += "?FOO";
satisfies += i1;
}
satisfies += ") (:for-some (";
std::set<Dstr>::iterator it1 = antecedentvars.begin();
while (it1 != antecedentvars.end()) {
if (it1 != antecedentvars.begin())
satisfies += ' ';
satisfies += *it1;
it1++;
}
satisfies += ") (:and\n ";
satisfies += antecedent;
satisfies += "\n";
std::vector<Dstr>::iterator it2 = consequentargs.begin();
unsigned i2=0;
while (it2 != consequentargs.end()) {
satisfies += " (= ?FOO";
satisfies += i2++;
satisfies += ' ';
satisfies += *it2;
satisfies += ")\n";
it2++;
}
satisfies += ")))";
out = "(implies ";
out += satisfies;
out += ' ';
out += consequentfn;
out += ")\n";
}
}
// add_implication
// in: implications, accumulated implications
// newone, the new one
// out: implications, with newone and possibly a debug printout added
void add_implication (Dstr &implications, Dstr &newone) {
#ifdef COUNT_BUGS
implications += "(print '(bug ";
implications += bug_count++;
implications += "))\n";
#endif
implications += newone;
}
// translate {slightly recursive}
// in: buf, containing a single SUO-KIF statement.
// body, accumulated miscellany for the "body" of the output.
// defrelations, accumulated relation information.
// defconcepts, accumulated concept information.
// implications, accumulated implications
// reject_invoked_toplevel, reject_invoked_anywhere,
// reject_at_mere_mention, rejects lists of increasing
// brutality.
// accept_toplevel, overrides reject_invoked_anywhere at toplevel.
// out: buf, contents indeterminate.
// body, possibly with new stuff added.
// defrelations, possibly with new defrelations added.
// defconcepts, possibly with new concepts added.
// implications, possibly with new stuff added.
void translate (Dstr &buf, Dstr &body, std::map<Dstr, rstruct *> &defrelations,
std::map<Dstr, cstruct *> &defconcepts, Dstr &implications,
std::map<Dstr, Dstr *> &reject_invoked_toplevel,
std::map<Dstr, Dstr *> &reject_invoked_anywhere,
std::map<Dstr, Dstr *> &reject_at_mere_mention,
std::set<Dstr> &accept_toplevel) {
// -------------------------------------------------------------------
// Blank lines and comments
// -------------------------------------------------------------------
if (buf[0] != '(') {
body += buf;
return;
}
// -------------------------------------------------------------------
// Documentation -- must do this before unrolling ROW variables.
// -------------------------------------------------------------------
if (!strncmp (buf.aschar(), "(documentation", 14)) {
do_renamings (buf);
add_tell (buf, body);
return;
}
Dstr buf_orig(buf), remainder(buf), arg0;
remainder /= 1; // Skip paren
remainder /= arg0;
// -------------------------------------------------------------------
// Detect rejects.
// -------------------------------------------------------------------
{
if (const Dstr *r1 = find_words (buf, reject_at_mere_mention, false, false)) {
comment_out (buf_orig);
Dstr temp (";; sumo2loom is dropping the following statement because it mentions\n;; ");
temp += *r1;
temp += ", which ";
temp += *(reject_at_mere_mention[*r1]);
temp += ":\n";
buf_orig *= temp;
body += buf_orig;
return;
}
// Tricky bit. If the offender is on accept_toplevel, skip that
// but look for other rejects.
bool excepted = false;
std::set<Dstr>::iterator at_it = accept_toplevel.begin();
while (at_it != accept_toplevel.end()) {
if (arg0 == *at_it) {
excepted = true;
break;
}
at_it++;
}
if (const Dstr *r2 = find_words (buf, reject_invoked_anywhere, true, excepted)) {
comment_out (buf_orig);
Dstr temp (";; sumo2loom is dropping the following statement because it uses\n;; ");
temp += *r2;
temp += ", which ";
temp += *(reject_invoked_anywhere[*r2]);
temp += ":\n";
buf_orig *= temp;
body += buf_orig;
return;
}
std::map<Dstr, Dstr *>::iterator rt_it = reject_invoked_toplevel.begin();
while (rt_it != reject_invoked_toplevel.end()) {
if (arg0 == rt_it->first) {
comment_out (buf_orig);
Dstr temp (";; sumo2loom is dropping the following statement because it\n;; ");
temp += *(rt_it->second);
temp += ":\n";
buf_orig *= temp;
body += buf_orig;
return;
}
rt_it++;
}
}
// -------------------------------------------------------------------
// Unroll @ROW variables.
// This is the only recursion.
// -------------------------------------------------------------------
if (buf.strstr ("@ROW") != -1) {
#ifdef UNROLL_ROWS
Dstr expansion, outbuf;
for (int i=1; i<=ROW_VARIABLE_UNROLLING_LIMIT; i++) {
if (i>1)
expansion += ' ';
expansion += "?ROW";
expansion += i;
Dstr temp(buf);
temp.repstr ("@ROW", expansion);
translate (temp, body, defrelations, defconcepts, implications, reject_invoked_toplevel, reject_invoked_anywhere, reject_at_mere_mention, accept_toplevel);
}
#else
comment_out (buf);
buf *= ";; sumo2loom is skipping this statement because it contains @ROW. Although\n;; @ROW could be unrolled, it usually appears in statements that use variable-\n;; arity predicates or other things that won't translate.\n";
body += buf;
#endif
return;
}
// -------------------------------------------------------------------
// Do renamings.
// -------------------------------------------------------------------
do_renamings (buf);
remainder = buf;
remainder /= 1; // Skip paren
remainder /= arg0;
// -------------------------------------------------------------------
// partition / disjointDecomposition
// (exhaustiveDecomposition is not handled; the covering bit is
// what's broken about disjointDecomposition)
// -------------------------------------------------------------------
if (arg0 == "partition" || arg0 == "sumodisjointDecomposition") {
Dstr partitionee, tempnam, outbuf;
#ifdef DISJOINTS
bool disjoint = (arg0[0] == 's');
#endif
remainder /= partitionee;
remainder.trim();
assert (remainder.length() > 1);
assert (remainder[remainder.length()-1] == ')');
// Remainder now contains the list of partitions with ) at the end.
cstruct *p = find_or_create (defconcepts, partitionee);
genpsym (tempnam);
outbuf = " (";
outbuf += tempnam;
outbuf += " (";
outbuf += remainder;
outbuf += ")\n";
// :exhaustive-partitions caused all sorts of trouble, so use a
// regular partition and an implies instead.
p->partitions += outbuf;
#ifdef DISJOINTS
// Alas, this also causes all sorts of trouble.
if (disjoint) {
implications += "(implies ";
implications += partitionee;
implications += " (:or ";
implications += remainder;
implications += ")\n";
}
#endif
return;
}
// -------------------------------------------------------------------
// disjointRelation
// -------------------------------------------------------------------
if (arg0 == "sumodisjointSumorelation") {
std::set<Dstr> rels;
Dstr arg;
remainder /= arg;
while (!arg.isNull()) {
rels.insert (arg);
remainder /= arg;
}
assert (rels.size() > 1);
std::set<Dstr>::iterator it1 = rels.begin();
// This is probably a waste of time anyway. In simple tests, Loom
// didn't seem to do anything about these implications.
while (it1 != rels.end()) {
std::set<Dstr>::iterator it2 = rels.begin();
while (it2 != rels.end()) {
if (it1 != it2) {
Dstr temp ("(implies ");
temp += *it1;
temp += " (:satisfies (?x ?y) (:not (";
temp += *it2;
temp += " ?x ?y))))\n";
add_implication (implications, temp);
}
it2++;
}
it1++;
}
return;
}
// -------------------------------------------------------------------
// contraryAttribute, exhaustiveAttribute
// -------------------------------------------------------------------
// FIXME?
// -------------------------------------------------------------------
// Implications
// -------------------------------------------------------------------
if (arg0 == "=>") {
Dstr arg1, arg2, temp;
remainder /= arg1;
remainder /= arg2;
translate_arrow (arg1, arg2, temp, buf_orig);
if (temp.isNull()) {
comment_out (buf_orig);
buf_orig *= ";; sumo2loom is skipping this implication because it has a nontrivial\n;; consequent:\n";
body += buf_orig;
} else
add_implication (implications, temp);
return;
}
if (arg0 == "<=>") {
Dstr arg1, arg2, temp;
bool firsthairy, secondhairy;
remainder /= arg1;
remainder /= arg2;
translate_arrow (arg1, arg2, temp, buf_orig);
firsthairy = temp.isNull();
add_implication (implications, temp);
translate_arrow (arg2, arg1, temp, buf_orig);
secondhairy = temp.isNull();
add_implication (implications, temp);
if (firsthairy && secondhairy) {
comment_out (buf_orig);
buf_orig *= ";; sumo2loom is skipping this implication because both sides are nontrivial:\n";
body += buf_orig;
} else if (firsthairy || secondhairy) {
comment_out (buf_orig);
buf_orig *= ";; sumo2loom is only translating half of this implication because the other\n;; half has a nontrivial consequent:\n";
body += buf_orig;
}
return;
}
// -------------------------------------------------------------------
// Definitions (other than the variable-arity things handled previously)
// -------------------------------------------------------------------
// Some relations may pass through here more than once.
if (arg0 == "instance") {
Dstr arg1, arg2;
remainder /= arg1;
remainder /= arg2;
if (arg2 == "BinarySumorelation" || arg2 == "BinaryPredicate" || arg2 == "UnarySumofunction"
// Special cases:
|| arg2 == "CaseRole" // Is a subclass of BinaryPredicate.
|| arg2 == "SpatialSumorelation") { // Has ambiguous arity.
// Don't override arity for spatial relations.
rstruct *r = find_or_create(defrelations,arg1);
if (r->arity < 2)
r->arity = 2;
} else if (arg2 == "TernarySumorelation" || arg2 == "TernaryPredicate" || arg2 == "BinarySumofunction")
find_or_create(defrelations,arg1)->arity = 3;
else if (arg2 == "QuaternarySumorelation" || arg2 == "QuaternaryPredicate" || arg2 == "TernarySumofunction")
find_or_create(defrelations,arg1)->arity = 4;
else if (arg2 == "QuintarySumorelation" || arg2 == "QuintaryPredicate" || arg2 == "QuaternarySumofunction")
find_or_create(defrelations,arg1)->arity = 5;
else if (arg2 == "SymmetricSumorelation")
find_or_create(defrelations,arg1)->symmetric = true;
else if (arg2 == "CommutativeSumofunction")
find_or_create(defrelations,arg1)->commutative = true;
// Concepts
else if (arg2 == "Sumoclass" || arg2 == "InheritableSumorelation" ||
arg2 == "DeonticAttribute") {
(void) find_or_create (defconcepts, arg1);
}
// Anyhow, declare the instances.
// Special case for (instance ?THING Entity)
if (arg2 != "Entity") {
buf = "(";
buf += arg2;
buf += " ";
buf += arg1;
buf += ")\n";
add_tell (buf, body);
}
} else if (arg0 == "subrelation") {
Dstr arg1, arg2;
remainder /= arg1;
remainder /= arg2;
rstruct *r1 = find_or_create (defrelations, arg1);
add_parent (r1->isa, arg2, arg1);
} else if (arg0 == "sumoinverse") {
Dstr arg1, arg2;
remainder /= arg1;
remainder /= arg2;
rstruct *r1 = find_or_create (defrelations, arg1);
rstruct *r2 = find_or_create (defrelations, arg2);
r1->inverse = arg2;
r2->inverse = arg1;
} else if (arg0 == "sumorange" || arg0 == "sumorangeSubclass") {
Dstr arg1, arg2;
remainder /= arg1;
remainder /= arg2;
rstruct *r1 = find_or_create (defrelations, arg1);
do_additional_setfn_renamings (arg2);
r1->range = arg2;
} else if (arg0 == "sumodomain" || arg0 == "sumodomainSubclass") {
Dstr arg1, arg2, arg3;
unsigned parmnum;
remainder /= arg1;
remainder /= arg2;
remainder /= arg3;
if (!isdigit(arg2[0])) {
fprintf (stderr, "Error: syntax: %s\n", buf.aschar());
exit (-1);
}
parmnum = arg2.asunsigned();
rstruct *r1 = find_or_create (defrelations, arg1);
// This just causes problems with variable arity relations and functions.
// if (parmnum > r1->arity)
// r1->arity = parmnum;
Dstr filler (DOMAINFILLER);
while (r1->domain.size() < parmnum+1)
r1->domain.push_back (filler);
do_additional_setfn_renamings (arg3);
r1->domain[parmnum] = arg3;
}
else if (arg0 == "subclass") {
Dstr arg1, arg2;
remainder /= arg1;
remainder /= arg2;
// Don't want this:
// (subclass (MinimalCutSetFn ?GRAPH) (CutSetFn ?GRAPH))
// (they since took that out)
if (arg1[0] != '(') {
cstruct *p = find_or_create (defconcepts, arg1);
add_parent (p->isa, arg2, arg1);
} else {
comment_out (buf);
buf *= ";; FIXME:\n";
body += buf;
}
} else if (arg0 == "sumodisjoint") {
Dstr arg1, arg2, temp;
remainder /= arg1;
remainder /= arg2;
if (remainder[0] != ')')
fprintf (stderr, "Warning: arity > 2 in disjoint not handled: %s", buf.aschar());
temp = "(implies ";
temp += arg1;
temp += " (not ";
temp += arg2;
temp += "))\n";
add_implication (implications, temp);
temp = "(implies ";
temp += arg2;
temp += " (not ";
temp += arg1;
temp += "))\n";
add_implication (implications, temp);
// -------------------------------------------------------------------
// Pass trivial propositions through.
// -------------------------------------------------------------------
} else
add_tell (buf, body);
}
// flag_nonprimitive_concepts {recursive}
// in: defconcepts, accumulated concept information.
// cname, the top of a (sub)tree of abstract concepts.
// out: defconcepts with primitive bools modified to try to prevent
// incoherent concepts from happening.
void flag_nonprimitive_concepts (std::map<Dstr, cstruct *> &defconcepts,
const Dstr &cname) {
// Special cases
if (cname == "ObjectAttitude" || cname == "SumopropositionalAttitude")
return;
std::map<Dstr, cstruct *>::iterator it = defconcepts.begin();
while (it != defconcepts.end()) {
// Special cases
if (it->first != "ObjectAttitude" && it->first != "SumopropositionalAttitude") {
cstruct *c = it->second;
std::set<Dstr>::iterator isa_it = c->isa.begin();
while (isa_it != c->isa.end()) {
if (*isa_it == cname) {
if (c->isa.size() > 1)
c->primitive = false;
flag_nonprimitive_concepts (defconcepts, it->first);
break;
}
isa_it++;
}
}
it++;
}
}
// unsupported
// used to initialize the reject lists.
// in: reject, name of unsupported function/relation/predicate.
// rejects, the list to use.
// reason, the excuse to give.
// out: rejects, with new one added.
void unsupported (char *reject, std::map<Dstr, Dstr *> &rejects, const Dstr &reason_in) {
Dstr *reason = new Dstr (reason_in);
rejects[reject] = reason;
}