Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ?-
- | kif_sanity_test.
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [all[N3], [ex[O3], [implies, [room(N3)], =>, [door(O3), has(N3, O3)]]]].
- pkif :-
- [ implies,
- [poss(KB, has(N3, O3))],
- (=>),
- [ implies,
- [poss(KB, door(O3))],
- (=>),
- [ implies,
- [poss(KB, room(N3))],
- (=>),
- [all[N3], [ex[O3], [implies, [room(N3)], =>, [door(O3), has(N3, O3)]]]]
- ]
- ]
- ].
- cnf :-
- ( not(possible_t(has(N3, O3)))
- ; not(possible_t(door(O3)))
- ; not(possible_t(room(N3)))
- ; not(skolem(O3, skIsDoorInUnkArg2ofHasFn(N3)))
- ; not(room(N3))
- ; door(O3)
- ),
- ( not(possible_t(has(N3, O3)))
- ; not(possible_t(door(O3)))
- ; not(possible_t(room(N3)))
- ; not(skolem(O3, skIsDoorInUnkArg2ofHasFn(N3)))
- ; not(room(N3))
- ; has(N3, O3)
- ).
- %
- tell3:0 not_possible_t(has,N3,O3);not_possible_t(door,O3);not_possible_t(room,N3);not_call_builtin(skolem,O3,skIsDoorInUnkArg2ofHasFn(N3));not_true_t(room,N3);true_t(door,O3).
- tell3:1 not_possible_t(has,N3,O3);not_possible_t(door,O3);not_possible_t(room,N3);not_call_builtin(skolem,O3,skIsDoorInUnkArg2ofHasFn(N3));not_true_t(room,N3);true_t(has,N3,O3).pttp :-
- [ (not_possible_t(door, O3):-possible_t(has, N3, O3), possible_t(room, N3), call_builtin(skolem, O3, skIsDoorInUnkArg2ofHasFn(N3)), true_t(room, N3), not_true_t(door, O3)),
- (not_possible_t(door, O3):-possible_t(has, N3, O3), possible_t(room, N3), call_builtin(skolem, O3, skIsDoorInUnkArg2ofHasFn(N3)), true_t(room, N3), not_true_t(has, N3, O3)),
- (not_possible_t(room, N3):-possible_t(has, N3, O3), possible_t(door, O3), call_builtin(skolem, O3, skIsDoorInUnkArg2ofHasFn(N3)), true_t(room, N3), not_true_t(door, O3)),
- (not_possible_t(room, N3):-possible_t(has, N3, O3), possible_t(door, O3), call_builtin(skolem, O3, skIsDoorInUnkArg2ofHasFn(N3)), true_t(room, N3), not_true_t(has, N3, O3)),
- (not_true_t(room, N3):-possible_t(has, N3, O3), possible_t(door, O3), possible_t(room, N3), call_builtin(skolem, O3, skIsDoorInUnkArg2ofHasFn(N3)), not_true_t(door, O3)),
- (not_true_t(room, N3):-possible_t(has, N3, O3), possible_t(door, O3), possible_t(room, N3), call_builtin(skolem, O3, skIsDoorInUnkArg2ofHasFn(N3)), not_true_t(has, N3, O3)),
- (true_t(door, O3):-possible_t(has, N3, O3), possible_t(door, O3), possible_t(room, N3), call_builtin(skolem, O3, skIsDoorInUnkArg2ofHasFn(N3)), true_t(room, N3)),
- (not_call_builtin(skolem, O3, skIsDoorInUnkArg2ofHasFn(N3)):-possible_t(has, N3, O3), possible_t(door, O3), possible_t(room, N3), true_t(room, N3), not_true_t(door, O3)),
- (not_call_builtin(skolem, O3, skIsDoorInUnkArg2ofHasFn(N3)):-possible_t(has, N3, O3), possible_t(door, O3), possible_t(room, N3), true_t(room, N3), not_true_t(has, N3, O3)),
- (not_possible_t(has, N3, O3):-possible_t(door, O3), possible_t(room, N3), call_builtin(skolem, O3, skIsDoorInUnkArg2ofHasFn(N3)), true_t(room, N3), not_true_t(door, O3)),
- (not_possible_t(has, N3, O3):-possible_t(door, O3), possible_t(room, N3), call_builtin(skolem, O3, skIsDoorInUnkArg2ofHasFn(N3)), true_t(room, N3), not_true_t(has, N3, O3)),
- (true_t(has, N3, O3):-possible_t(has, N3, O3), possible_t(door, O3), possible_t(room, N3), call_builtin(skolem, O3, skIsDoorInUnkArg2ofHasFn(N3)), true_t(room, N3))
- ].
- %
- not_possible_t(door, O3) :-
- w_infer_by(tell3:0),
- not(door(O3)),
- poss(has(N3, O3)),
- skolem(O3, skIsDoorInUnkArg2ofHasFn(N3)),
- room(N3).
- %
- tell3:0 not_possible_t(door,O3):-not_true_t(door,O3),possible_t(has,N3,O3),call_builtin(skolem,O3,skIsDoorInUnkArg2ofHasFn(N3)),true_t(room,N3).not_possible_t(door,
- O3) :-
- w_infer_by(tell3:1),
- skolem(O3, skIsDoorInUnkArg2ofHasFn(N3)),
- room(N3),
- not(has(N3, O3)).
- %
- tell3:1 not_possible_t(door,O3):-call_builtin(skolem,O3,skIsDoorInUnkArg2ofHasFn(N3)),true_t(room,N3),not_true_t(has,N3,O3).not_possible_t(room,
- N3) :-
- w_infer_by(tell3:2),
- room(N3),
- poss(has(N3, O3)),
- skolem(O3, skIsDoorInUnkArg2ofHasFn(N3)),
- not(door(O3)).
- %
- tell3:2 not_possible_t(room,N3):-true_t(room,N3),possible_t(has,N3,O3),call_builtin(skolem,O3,skIsDoorInUnkArg2ofHasFn(N3)),not_true_t(door,O3).not_possible_t(room,
- N3) :-
- w_infer_by(tell3:3),
- room(N3),
- poss(door(O3)),
- skolem(O3, skIsDoorInUnkArg2ofHasFn(N3)),
- not(has(N3, O3)).
- %
- tell3:3 not_possible_t(room,N3):-true_t(room,N3),possible_t(door,O3),call_builtin(skolem,O3,skIsDoorInUnkArg2ofHasFn(N3)),not_true_t(has,N3,O3).not_true_t(room, N3) :-
- w_infer_by(tell3:4),
- poss(room(N3)),
- poss(has(N3, O3)),
- skolem(O3, skIsDoorInUnkArg2ofHasFn(N3)),
- not(door(O3)).
- %
- tell3:4 not_true_t(room,N3):-possible_t(room,N3),possible_t(has,N3,O3),call_builtin(skolem,O3,skIsDoorInUnkArg2ofHasFn(N3)),not_true_t(door,O3).not_true_t(room, N3) :-
- w_infer_by(tell3:5),
- poss(room(N3)),
- poss(door(O3)),
- skolem(O3, skIsDoorInUnkArg2ofHasFn(N3)),
- not(has(N3, O3)).
- %
- tell3:5 not_true_t(room,N3):-possible_t(room,N3),possible_t(door,O3),call_builtin(skolem,O3,skIsDoorInUnkArg2ofHasFn(N3)),not_true_t(has,N3,O3).true_t(door, O3) :-
- w_infer_by(tell3:6),
- poss(door(O3)),
- poss(has(N3, O3)),
- skolem(O3, skIsDoorInUnkArg2ofHasFn(N3)),
- room(N3).
- %
- tell3:6 true_t(door,O3):-possible_t(door,O3),possible_t(has,N3,O3),call_builtin(skolem,O3,skIsDoorInUnkArg2ofHasFn(N3)),true_t(room,N3).not_call_builtin(skolem,
- O3,
- skIsDoorInUnkArg2ofHasFn(N3)) :-
- w_infer_by(tell3:7),
- poss(has(N3, O3)),
- room(N3),
- not(door(O3)).
- %
- tell3:7 not_call_builtin(skolem,O3,skIsDoorInUnkArg2ofHasFn(N3)):-possible_t(has,N3,O3),true_t(room,N3),not_true_t(door,O3).not_call_builtin(skolem,
- O3,
- skIsDoorInUnkArg2ofHasFn(N3)) :-
- w_infer_by(tell3:8),
- poss(door(O3)),
- room(N3),
- not(has(N3, O3)).
- %
- tell3:8 not_call_builtin(skolem,O3,skIsDoorInUnkArg2ofHasFn(N3)):-possible_t(door,O3),true_t(room,N3),not_true_t(has,N3,O3).not_possible_t(has,
- N3,
- O3) :-
- w_infer_by(tell3:9),
- skolem(O3, skIsDoorInUnkArg2ofHasFn(N3)),
- room(N3),
- not(door(O3)).
- %
- tell3:9 not_possible_t(has,N3,O3):-call_builtin(skolem,O3,skIsDoorInUnkArg2ofHasFn(N3)),true_t(room,N3),not_true_t(door,O3).not_possible_t(has,
- N3,
- O3) :-
- w_infer_by(tell3:10),
- poss(door(O3)),
- skolem(O3, skIsDoorInUnkArg2ofHasFn(N3)),
- room(N3),
- not(has(N3, O3)).
- %
- tell3:10 not_possible_t(has,N3,O3):-possible_t(door,O3),call_builtin(skolem,O3,skIsDoorInUnkArg2ofHasFn(N3)),true_t(room,N3),not_true_t(has,N3,O3).true_t(has, N3, O3) :-
- w_infer_by(tell3:11),
- poss(has(N3, O3)),
- poss(door(O3)),
- skolem(O3, skIsDoorInUnkArg2ofHasFn(N3)),
- room(N3).
- %
- tell3:11 true_t(has,N3,O3):-possible_t(has,N3,O3),possible_t(door,O3),call_builtin(skolem,O3,skIsDoorInUnkArg2ofHasFn(N3)),true_t(room,N3).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [all[N3], [all[O3], [p(N3, O3), q(N3, O3)]]].
- pkif :-
- [ implies,
- [poss(KB, q(N3, O3))],
- (=>),
- [ implies,
- [poss(KB, p(N3, O3))],
- (=>),
- [all[N3], [all[O3], [p(N3, O3), q(N3, O3)]]]
- ]
- ].
- cnf :-
- ( not(possible_t(q(N3, O3)))
- ; not(possible_t(p(N3, O3)))
- ; p(N3, O3)
- ),
- ( not(possible_t(q(N3, O3)))
- ; not(possible_t(p(N3, O3)))
- ; q(N3, O3)
- ).
- %
- tell4:0 not_possible_t(q,N3,O3);not_possible_t(p,N3,O3);true_t(p,N3,O3).
- tell4:1 not_possible_t(q,N3,O3);not_possible_t(p,N3,O3);true_t(q,N3,O3).pttp :-
- [ (not_possible_t(p, N3, O3):-possible_t(q, N3, O3), not_true_t(p, N3, O3)),
- (not_possible_t(p, N3, O3):-possible_t(q, N3, O3), not_true_t(q, N3, O3)),
- (not_possible_t(q, N3, O3):-possible_t(p, N3, O3), not_true_t(p, N3, O3)),
- (not_possible_t(q, N3, O3):-possible_t(p, N3, O3), not_true_t(q, N3, O3)),
- (true_t(p, N3, O3):-possible_t(q, N3, O3), possible_t(p, N3, O3)),
- (true_t(q, N3, O3):-possible_t(q, N3, O3), possible_t(p, N3, O3))
- ].
- %
- not_possible_t(p, N3, O3) :-
- w_infer_by(tell4:0),
- poss(q(N3, O3)),
- not(p(N3, O3)).
- %
- tell4:0 not_possible_t(p,N3,O3):-possible_t(q,N3,O3),not_true_t(p,N3,O3).not_possible_t(p,
- N3,
- O3) :-
- w_infer_by(tell4:1),
- not(q(N3, O3)).
- %
- tell4:1 not_possible_t(p,N3,O3):-not_true_t(q,N3,O3).not_possible_t(q, N3, O3) :-
- w_infer_by(tell4:2),
- not(p(N3, O3)).
- %
- tell4:2 not_possible_t(q,N3,O3):-not_true_t(p,N3,O3).not_possible_t(q, N3, O3) :-
- w_infer_by(tell4:3),
- poss(p(N3, O3)),
- not(q(N3, O3)).
- %
- tell4:3 not_possible_t(q,N3,O3):-possible_t(p,N3,O3),not_true_t(q,N3,O3).true_t(p, N3, O3) :-
- w_infer_by(tell4:4),
- poss(q(N3, O3)),
- poss(p(N3, O3)).
- %
- tell4:4 true_t(p,N3,O3):-possible_t(q,N3,O3),possible_t(p,N3,O3).true_t(q, N3, O3) :-
- w_infer_by(tell4:5),
- poss(q(N3, O3)),
- poss(p(N3, O3)).
- %
- tell4:5 true_t(q,N3,O3):-possible_t(q,N3,O3),possible_t(p,N3,O3).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [all[N3], [loves(fatherFn(N3), N3)]].
- pkif :-
- [ implies,
- [poss(KB, loves(fatherFn(N3), N3))],
- (=>),
- [all[N3], [loves(fatherFn(N3), N3)]]
- ].
- cnf :-
- ( mudEquals(FATHERFN9, fatherFn(N3))
- ; possible_t((not(skolem(FATHERFN8, skArg1ofEqualsLovesFn));not(mudEquals(FATHERFN8, fatherFn(N3)));not(loves(FATHERFN8, N3))))
- ),
- ( loves(FATHERFN9, N3)
- ; possible_t((not(skolem(FATHERFN8, skArg1ofEqualsLovesFn));not(mudEquals(FATHERFN8, fatherFn(N3)));not(loves(FATHERFN8, N3))))
- ).
- %
- tell5:0 mudEquals(FATHERFN9,fatherFn(N3));possible_t(;,not_call_builtin(skolem,FATHERFN8,skArg1ofEqualsLovesFn), (not_mudEquals(FATHERFN8,fatherFn(N3));not_true_t(loves,FATHERFN8,N3))).
- tell5:1 true_t(loves,FATHERFN9,N3);possible_t(;,not_call_builtin(skolem,FATHERFN8,skArg1ofEqualsLovesFn), (not_mudEquals(FATHERFN8,fatherFn(N3));not_true_t(loves,FATHERFN8,N3))).pttp :-
- [ (mudEquals(FATHERFN9, fatherFn(N3)):-not_possible_t(;, not_call_builtin(skolem, FATHERFN8, skArg1ofEqualsLovesFn), (not_mudEquals(FATHERFN8, fatherFn(N3));not_true_t(loves, FATHERFN8, N3)))),
- (possible_t(;, not_call_builtin(skolem, FATHERFN8, skArg1ofEqualsLovesFn), (not_mudEquals(FATHERFN8, fatherFn(N3));not_true_t(loves, FATHERFN8, N3))):-not_mudEquals(FATHERFN9, fatherFn(N3))),
- (possible_t(;, not_call_builtin(skolem, FATHERFN8, skArg1ofEqualsLovesFn), (not_mudEquals(FATHERFN8, fatherFn(N3));not_true_t(loves, FATHERFN8, N3))):-not_true_t(loves, FATHERFN9, N3)),
- (true_t(loves, FATHERFN9, N3):-not_possible_t(;, not_call_builtin(skolem, FATHERFN8, skArg1ofEqualsLovesFn), (not_mudEquals(FATHERFN8, fatherFn(N3));not_true_t(loves, FATHERFN8, N3))))
- ].
- %
- mudEquals(FATHERFN9, fatherFn(N3)) :-
- w_infer_by(tell5:0),
- not(poss((not(skolem(FATHERFN8, skArg1ofEqualsLovesFn));mudEquals(FATHERFN10, fatherFn(N3)), not(mudEquals(FATHERFN8, FATHERFN10));not(loves(FATHERFN8, N3))))).
- %
- tell5:0 mudEquals(FATHERFN9,fatherFn(N3)):-not_possible_t(;,not_call_builtin(skolem,FATHERFN8,skArg1ofEqualsLovesFn), (mudEquals(FATHERFN10,fatherFn(N3)),not_mudEquals(FATHERFN8,FATHERFN10);not_true_t(loves,FATHERFN8,N3))).poss((not(skolem(FATHERFN8, skArg1ofEqualsLovesFn));not(mudEquals(FATHERFN8, FATHERFN13));not(loves(FATHERFN8, N3)))):not(mudEquals(FATHERFN13, fatherFn(N3)), (mudEquals(FATHERFN11, fatherFn(N3)), not(mudEquals(FATHERFN9, FATHERFN11)))) :-
- w_infer_by(tell5:1).
- %
- tell5:1 true_t(:,possible_t(;,not_call_builtin(skolem,FATHERFN8,skArg1ofEqualsLovesFn), (not_mudEquals(FATHERFN8,FATHERFN13);not_true_t(loves,FATHERFN8,N3))),mudEquals(FATHERFN13,fatherFn(N3))- (mudEquals(FATHERFN11,fatherFn(N3)),not_mudEquals(FATHERFN9,FATHERFN11))).
- tell5:1 true_t(:,possible_t(;,not_call_builtin(skolem,FATHERFN8,skArg1ofEqualsLovesFn), (not_mudEquals(FATHERFN8,FATHERFN13);not_true_t(loves,FATHERFN8,N3))),mudEquals(FATHERFN13,fatherFn(N3))- (mudEquals(FATHERFN11,fatherFn(N3)),not_mudEquals(FATHERFN9,FATHERFN11))).poss((not(skolem(FATHERFN8, skArg1ofEqualsLovesFn));not(mudEquals(FATHERFN8, FATHERFN14));not(loves(FATHERFN8, N3)))):not(mudEquals(FATHERFN14, fatherFn(N3)), not(loves(FATHERFN9, N3))) :-
- w_infer_by(tell5:2).
- %
- tell5:2 true_t(:,possible_t(;,not_call_builtin(skolem,FATHERFN8,skArg1ofEqualsLovesFn), (not_mudEquals(FATHERFN8,FATHERFN14);not_true_t(loves,FATHERFN8,N3))),mudEquals(FATHERFN14,fatherFn(N3))-not_true_t(loves,FATHERFN9,N3)).
- tell5:2 true_t(:,possible_t(;,not_call_builtin(skolem,FATHERFN8,skArg1ofEqualsLovesFn), (not_mudEquals(FATHERFN8,FATHERFN14);not_true_t(loves,FATHERFN8,N3))),mudEquals(FATHERFN14,fatherFn(N3))-not_true_t(loves,FATHERFN9,N3)).true_t(loves,
- FATHERFN9,
- N3) :-
- w_infer_by(tell5:3),
- not(poss((not(skolem(FATHERFN8, skArg1ofEqualsLovesFn));mudEquals(FATHERFN12, fatherFn(N3)), not(mudEquals(FATHERFN8, FATHERFN12));not(loves(FATHERFN8, N3))))).
- %
- tell5:3 true_t(loves,FATHERFN9,N3):-not_possible_t(;,not_call_builtin(skolem,FATHERFN8,skArg1ofEqualsLovesFn), (mudEquals(FATHERFN12,fatherFn(N3)),not_mudEquals(FATHERFN8,FATHERFN12);not_true_t(loves,FATHERFN8,N3))).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [relationAllExists('causes-EventEvent', 'Exhibitionism', 'VisualEvent')].
- pkif :-
- [ implies,
- [ poss(KB,
- relationAllExists('causes-EventEvent',
- 'Exhibitionism',
- 'VisualEvent'))
- ],
- (=>),
- [relationAllExists('causes-EventEvent', 'Exhibitionism', 'VisualEvent')]
- ].
- cnf :-
- ( not(possible_t(relationAllExists('causes-EventEvent',
- 'Exhibitionism',
- 'VisualEvent')))
- ; relationAllExists('causes-EventEvent',
- 'Exhibitionism',
- 'VisualEvent')
- ).
- %
- tell6:0 not_possible_t(relationAllExists,causes-EventEvent,Exhibitionism,VisualEvent);true_t(relationAllExists,causes-EventEvent,Exhibitionism,VisualEvent).pttp :-
- [ (not_possible_t(relationAllExists, 'causes-EventEvent', 'Exhibitionism', 'VisualEvent'):-not_true_t(relationAllExists, 'causes-EventEvent', 'Exhibitionism', 'VisualEvent')),
- (true_t(relationAllExists, 'causes-EventEvent', 'Exhibitionism', 'VisualEvent'):-possible_t(relationAllExists, 'causes-EventEvent', 'Exhibitionism', 'VisualEvent'))
- ].
- %
- not_possible_t(relationAllExists, 'causes-EventEvent', 'Exhibitionism', 'VisualEvent') :-
- w_infer_by(tell6:0),
- not(relationAllExists('causes-EventEvent',
- 'Exhibitionism',
- 'VisualEvent')).
- %
- tell6:0 not_possible_t(relationAllExists,causes-EventEvent,Exhibitionism,VisualEvent):-not_true_t(relationAllExists,causes-EventEvent,Exhibitionism,VisualEvent).true_t(relationAllExists,
- 'causes-EventEvent',
- 'Exhibitionism',
- 'VisualEvent') :-
- w_infer_by(tell6:1),
- poss(relationAllExists('causes-EventEvent',
- 'Exhibitionism',
- 'VisualEvent')).
- %
- tell6:1 true_t(relationAllExists,causes-EventEvent,Exhibitionism,VisualEvent):-possible_t(relationAllExists,causes-EventEvent,Exhibitionism,VisualEvent).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- ['(relationAllExists causes-EventEvent Exhibitionism VisualEvent)'].
- pkif :-
- ['(relationAllExists causes-EventEvent Exhibitionism VisualEvent)'].
- cnf :-
- '(relationAllExists causes-EventEvent Exhibitionism VisualEvent)'.
- %
- tell7:0 (relationAllExists causes-EventEvent Exhibitionism VisualEvent).
- tell7:0 (relationAllExists causes-EventEvent Exhibitionism VisualEvent).pttp :-
- [ ('(relationAllExists causes-EventEvent Exhibitionism VisualEvent)':-true)
- ].
- %
- '(relationAllExists causes-EventEvent Exhibitionism VisualEvent)' :-
- w_infer_by(tell7:0),
- [].
- %
- tell7:0 (relationAllExists causes-EventEvent Exhibitionism VisualEvent):-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ relationAllExists(properSubEvents,
- 'Exhibitionism',
- 'DisplayingFn'('SexOrgan'))
- ].
- pkif :-
- [ implies,
- [ poss(KB,
- relationAllExists(properSubEvents,
- 'Exhibitionism',
- 'DisplayingFn'('SexOrgan')))
- ],
- (=>),
- [ relationAllExists(properSubEvents,
- 'Exhibitionism',
- 'DisplayingFn'('SexOrgan'))
- ]
- ].
- cnf :-
- ( mudEquals(DISPLAYINGFNSEXORGAN9, 'DisplayingFn'('SexOrgan'))
- ; possible_t((not(skolem(DISPLAYINGFNSEXORGAN8, skArg1ofEqualsArgnofRelationallexistsFn));not(mudEquals(DISPLAYINGFNSEXORGAN8, 'DisplayingFn'('SexOrgan')));not(relationAllExists(properSubEvents, 'Exhibitionism', DISPLAYINGFNSEXORGAN8))))
- ),
- ( relationAllExists(properSubEvents,
- 'Exhibitionism',
- DISPLAYINGFNSEXORGAN9)
- ; possible_t((not(skolem(DISPLAYINGFNSEXORGAN8, skArg1ofEqualsArgnofRelationallexistsFn));not(mudEquals(DISPLAYINGFNSEXORGAN8, 'DisplayingFn'('SexOrgan')));not(relationAllExists(properSubEvents, 'Exhibitionism', DISPLAYINGFNSEXORGAN8))))
- ).
- %
- tell8:0 mudEquals(DISPLAYINGFNSEXORGAN9,DisplayingFn(SexOrgan));possible_t(;,not_call_builtin(skolem,DISPLAYINGFNSEXORGAN8,skArg1ofEqualsArgnofRelationallexistsFn), (not_mudEquals(DISPLAYINGFNSEXORGAN8,DisplayingFn(SexOrgan));not_true_t(relationAllExists,properSubEvents,Exhibitionism,DISPLAYINGFNSEXORGAN8))).
- tell8:1 true_t(relationAllExists,properSubEvents,Exhibitionism,DISPLAYINGFNSEXORGAN9);possible_t(;,not_call_builtin(skolem,DISPLAYINGFNSEXORGAN8,skArg1ofEqualsArgnofRelationallexistsFn), (not_mudEquals(DISPLAYINGFNSEXORGAN8,DisplayingFn(SexOrgan));not_true_t(relationAllExists,properSubEvents,Exhibitionism,DISPLAYINGFNSEXORGAN8))).pttp :-
- [ (mudEquals(DISPLAYINGFNSEXORGAN9, 'DisplayingFn'('SexOrgan')):-not_possible_t(;, not_call_builtin(skolem, DISPLAYINGFNSEXORGAN8, skArg1ofEqualsArgnofRelationallexistsFn), (not_mudEquals(DISPLAYINGFNSEXORGAN8, 'DisplayingFn'('SexOrgan'));not_true_t(relationAllExists, properSubEvents, 'Exhibitionism', DISPLAYINGFNSEXORGAN8)))),
- (possible_t(;, not_call_builtin(skolem, DISPLAYINGFNSEXORGAN8, skArg1ofEqualsArgnofRelationallexistsFn), (not_mudEquals(DISPLAYINGFNSEXORGAN8, 'DisplayingFn'('SexOrgan'));not_true_t(relationAllExists, properSubEvents, 'Exhibitionism', DISPLAYINGFNSEXORGAN8))):-not_mudEquals(DISPLAYINGFNSEXORGAN9, 'DisplayingFn'('SexOrgan'))),
- (possible_t(;, not_call_builtin(skolem, DISPLAYINGFNSEXORGAN8, skArg1ofEqualsArgnofRelationallexistsFn), (not_mudEquals(DISPLAYINGFNSEXORGAN8, 'DisplayingFn'('SexOrgan'));not_true_t(relationAllExists, properSubEvents, 'Exhibitionism', DISPLAYINGFNSEXORGAN8))):-not_true_t(relationAllExists, properSubEvents, 'Exhibitionism', DISPLAYINGFNSEXORGAN9)),
- (true_t(relationAllExists, properSubEvents, 'Exhibitionism', DISPLAYINGFNSEXORGAN9):-not_possible_t(;, not_call_builtin(skolem, DISPLAYINGFNSEXORGAN8, skArg1ofEqualsArgnofRelationallexistsFn), (not_mudEquals(DISPLAYINGFNSEXORGAN8, 'DisplayingFn'('SexOrgan'));not_true_t(relationAllExists, properSubEvents, 'Exhibitionism', DISPLAYINGFNSEXORGAN8))))
- ].
- %
- mudEquals(DISPLAYINGFNSEXORGAN9, 'DisplayingFn'('SexOrgan')) :-
- w_infer_by(tell8:0),
- not(poss((not(skolem(DISPLAYINGFNSEXORGAN8, skArg1ofEqualsArgnofRelationallexistsFn));mudEquals(DISPLAYINGFNSEXORGAN10, 'DisplayingFn'('SexOrgan')), not(mudEquals(DISPLAYINGFNSEXORGAN8, DISPLAYINGFNSEXORGAN10));not(relationAllExists(properSubEvents, 'Exhibitionism', DISPLAYINGFNSEXORGAN8))))).
- %
- tell8:0 mudEquals(DISPLAYINGFNSEXORGAN9,DisplayingFn(SexOrgan)):-not_possible_t(;,not_call_builtin(skolem,DISPLAYINGFNSEXORGAN8,skArg1ofEqualsArgnofRelationallexistsFn), (mudEquals(DISPLAYINGFNSEXORGAN10,DisplayingFn(SexOrgan)),not_mudEquals(DISPLAYINGFNSEXORGAN8,DISPLAYINGFNSEXORGAN10);not_true_t(relationAllExists,properSubEvents,Exhibitionism,DISPLAYINGFNSEXORGAN8))).poss((not(skolem(DISPLAYINGFNSEXORGAN8, skArg1ofEqualsArgnofRelationallexistsFn));not(mudEquals(DISPLAYINGFNSEXORGAN8, DISPLAYINGFNSEXORGAN13));not(relationAllExists(properSubEvents, 'Exhibitionism', DISPLAYINGFNSEXORGAN8)))):not(mudEquals(DISPLAYINGFNSEXORGAN13, 'DisplayingFn'('SexOrgan')), (mudEquals(DISPLAYINGFNSEXORGAN11, 'DisplayingFn'('SexOrgan')), not(mudEquals(DISPLAYINGFNSEXORGAN9, DISPLAYINGFNSEXORGAN11)))) :-
- w_infer_by(tell8:1).
- %
- tell8:1 true_t(:,possible_t(;,not_call_builtin(skolem,DISPLAYINGFNSEXORGAN8,skArg1ofEqualsArgnofRelationallexistsFn), (not_mudEquals(DISPLAYINGFNSEXORGAN8,DISPLAYINGFNSEXORGAN13);not_true_t(relationAllExists,properSubEvents,Exhibitionism,DISPLAYINGFNSEXORGAN8))),mudEquals(DISPLAYINGFNSEXORGAN13,DisplayingFn(SexOrgan))- (mudEquals(DISPLAYINGFNSEXORGAN11,DisplayingFn(SexOrgan)),not_mudEquals(DISPLAYINGFNSEXORGAN9,DISPLAYINGFNSEXORGAN11))).
- tell8:1 true_t(:,possible_t(;,not_call_builtin(skolem,DISPLAYINGFNSEXORGAN8,skArg1ofEqualsArgnofRelationallexistsFn), (not_mudEquals(DISPLAYINGFNSEXORGAN8,DISPLAYINGFNSEXORGAN13);not_true_t(relationAllExists,properSubEvents,Exhibitionism,DISPLAYINGFNSEXORGAN8))),mudEquals(DISPLAYINGFNSEXORGAN13,DisplayingFn(SexOrgan))- (mudEquals(DISPLAYINGFNSEXORGAN11,DisplayingFn(SexOrgan)),not_mudEquals(DISPLAYINGFNSEXORGAN9,DISPLAYINGFNSEXORGAN11))).poss((not(skolem(DISPLAYINGFNSEXORGAN8, skArg1ofEqualsArgnofRelationallexistsFn));not(mudEquals(DISPLAYINGFNSEXORGAN8, DISPLAYINGFNSEXORGAN14));not(relationAllExists(properSubEvents, 'Exhibitionism', DISPLAYINGFNSEXORGAN8)))):not(mudEquals(DISPLAYINGFNSEXORGAN14, 'DisplayingFn'('SexOrgan')), not(relationAllExists(properSubEvents, 'Exhibitionism', DISPLAYINGFNSEXORGAN9))) :-
- w_infer_by(tell8:2).
- %
- tell8:2 true_t(:,possible_t(;,not_call_builtin(skolem,DISPLAYINGFNSEXORGAN8,skArg1ofEqualsArgnofRelationallexistsFn), (not_mudEquals(DISPLAYINGFNSEXORGAN8,DISPLAYINGFNSEXORGAN14);not_true_t(relationAllExists,properSubEvents,Exhibitionism,DISPLAYINGFNSEXORGAN8))),mudEquals(DISPLAYINGFNSEXORGAN14,DisplayingFn(SexOrgan))-not_true_t(relationAllExists,properSubEvents,Exhibitionism,DISPLAYINGFNSEXORGAN9)).
- tell8:2 true_t(:,possible_t(;,not_call_builtin(skolem,DISPLAYINGFNSEXORGAN8,skArg1ofEqualsArgnofRelationallexistsFn), (not_mudEquals(DISPLAYINGFNSEXORGAN8,DISPLAYINGFNSEXORGAN14);not_true_t(relationAllExists,properSubEvents,Exhibitionism,DISPLAYINGFNSEXORGAN8))),mudEquals(DISPLAYINGFNSEXORGAN14,DisplayingFn(SexOrgan))-not_true_t(relationAllExists,properSubEvents,Exhibitionism,DISPLAYINGFNSEXORGAN9)).true_t(relationAllExists,
- properSubEvents,
- 'Exhibitionism',
- DISPLAYINGFNSEXORGAN9) :-
- w_infer_by(tell8:3),
- not(poss((not(skolem(DISPLAYINGFNSEXORGAN8, skArg1ofEqualsArgnofRelationallexistsFn));mudEquals(DISPLAYINGFNSEXORGAN12, 'DisplayingFn'('SexOrgan')), not(mudEquals(DISPLAYINGFNSEXORGAN8, DISPLAYINGFNSEXORGAN12));not(relationAllExists(properSubEvents, 'Exhibitionism', DISPLAYINGFNSEXORGAN8))))).
- %
- tell8:3 true_t(relationAllExists,properSubEvents,Exhibitionism,DISPLAYINGFNSEXORGAN9):-not_possible_t(;,not_call_builtin(skolem,DISPLAYINGFNSEXORGAN8,skArg1ofEqualsArgnofRelationallexistsFn), (mudEquals(DISPLAYINGFNSEXORGAN12,DisplayingFn(SexOrgan)),not_mudEquals(DISPLAYINGFNSEXORGAN8,DISPLAYINGFNSEXORGAN12);not_true_t(relationAllExists,properSubEvents,Exhibitionism,DISPLAYINGFNSEXORGAN8))).
- true ClauseIndex Size = 4294967233
- ClauseIndex Size = 4294967265
- ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ '(relationAllExists properSubEvents Exhibitionism (DisplayingFn SexOrgan))'
- ].
- pkif :-
- [ '(relationAllExists properSubEvents Exhibitionism (DisplayingFn SexOrgan))'
- ].
- cnf :-
- '(relationAllExists properSubEvents Exhibitionism (DisplayingFn SexOrgan))'.
- %
- tell9:0 (relationAllExists properSubEvents Exhibitionism (DisplayingFn SexOrgan)).
- tell9:0 (relationAllExists properSubEvents Exhibitionism (DisplayingFn SexOrgan)).pttp :-
- [ ('(relationAllExists properSubEvents Exhibitionism (DisplayingFn SexOrgan))':-true)
- ].
- %
- '(relationAllExists properSubEvents Exhibitionism (DisplayingFn SexOrgan))' :-
- w_infer_by(tell9:0),
- [].
- %
- tell9:0 (relationAllExists properSubEvents Exhibitionism (DisplayingFn SexOrgan)):-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ knows('UnitedStatesOfAmerica',
- [ ex[THING],
- [ assets('ChevronCorporation', THING),
- objectFoundInLocation(THING, 'Kazakhstan')
- ]
- ])
- ].
- pkif :-
- [ implies,
- [ poss(KB,
- knows('UnitedStatesOfAmerica',
- objectFoundInLocation(THING, 'Kazakhstan')))
- ],
- (=>),
- [ implies,
- [ poss(KB,
- knows('UnitedStatesOfAmerica',
- assets('ChevronCorporation', THING)))
- ],
- (=>),
- [ knows('UnitedStatesOfAmerica',
- [ ex[THING],
- [ assets('ChevronCorporation', THING),
- objectFoundInLocation(THING, 'Kazakhstan')
- ]
- ])
- ]
- ]
- ].
- cnf :-
- ( not(knows('UnitedStatesOfAmerica',
- objectFoundInLocation(THING, 'Kazakhstan')))
- ; not(knows('UnitedStatesOfAmerica',
- assets('ChevronCorporation', THING)))
- ; beliefs('UnitedStatesOfAmerica',
- (not(skolem(THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn));assets('ChevronCorporation', THING)))
- ),
- ( not(knows('UnitedStatesOfAmerica',
- objectFoundInLocation(THING, 'Kazakhstan')))
- ; not(knows('UnitedStatesOfAmerica',
- assets('ChevronCorporation', THING)))
- ; beliefs('UnitedStatesOfAmerica',
- (not(skolem(THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn));objectFoundInLocation(THING, 'Kazakhstan')))
- ).
- %
- tell10:0 not_true_t(knows,UnitedStatesOfAmerica,objectFoundInLocation(THING,Kazakhstan));not_true_t(knows,UnitedStatesOfAmerica,assets(ChevronCorporation,THING));true_t(beliefs,UnitedStatesOfAmerica, (not_call_builtin(skolem,THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(assets,ChevronCorporation,THING))).
- tell10:1 not_true_t(knows,UnitedStatesOfAmerica,objectFoundInLocation(THING,Kazakhstan));not_true_t(knows,UnitedStatesOfAmerica,assets(ChevronCorporation,THING));true_t(beliefs,UnitedStatesOfAmerica, (not_call_builtin(skolem,THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(objectFoundInLocation,THING,Kazakhstan))).pttp :-
- [ (not_true_t(knows, 'UnitedStatesOfAmerica', assets('ChevronCorporation', THING)):-true_t(knows, 'UnitedStatesOfAmerica', objectFoundInLocation(THING, 'Kazakhstan')), not_true_t(beliefs, 'UnitedStatesOfAmerica', (not_call_builtin(skolem, THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(assets, 'ChevronCorporation', THING)))),
- (not_true_t(knows, 'UnitedStatesOfAmerica', assets('ChevronCorporation', THING)):-true_t(knows, 'UnitedStatesOfAmerica', objectFoundInLocation(THING, 'Kazakhstan')), not_true_t(beliefs, 'UnitedStatesOfAmerica', (not_call_builtin(skolem, THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(objectFoundInLocation, THING, 'Kazakhstan')))),
- (not_true_t(knows, 'UnitedStatesOfAmerica', objectFoundInLocation(THING, 'Kazakhstan')):-true_t(knows, 'UnitedStatesOfAmerica', assets('ChevronCorporation', THING)), not_true_t(beliefs, 'UnitedStatesOfAmerica', (not_call_builtin(skolem, THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(assets, 'ChevronCorporation', THING)))),
- (not_true_t(knows, 'UnitedStatesOfAmerica', objectFoundInLocation(THING, 'Kazakhstan')):-true_t(knows, 'UnitedStatesOfAmerica', assets('ChevronCorporation', THING)), not_true_t(beliefs, 'UnitedStatesOfAmerica', (not_call_builtin(skolem, THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(objectFoundInLocation, THING, 'Kazakhstan')))),
- (true_t(beliefs, 'UnitedStatesOfAmerica', (not_call_builtin(skolem, THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(assets, 'ChevronCorporation', THING))):-true_t(knows, 'UnitedStatesOfAmerica', objectFoundInLocation(THING, 'Kazakhstan')), true_t(knows, 'UnitedStatesOfAmerica', assets('ChevronCorporation', THING))),
- (true_t(beliefs, 'UnitedStatesOfAmerica', (not_call_builtin(skolem, THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(objectFoundInLocation, THING, 'Kazakhstan'))):-true_t(knows, 'UnitedStatesOfAmerica', objectFoundInLocation(THING, 'Kazakhstan')), true_t(knows, 'UnitedStatesOfAmerica', assets('ChevronCorporation', THING)))
- ].
- %
- not_true_t(knows, 'UnitedStatesOfAmerica', assets('ChevronCorporation', THING)) :-
- w_infer_by(tell10:0),
- knows('UnitedStatesOfAmerica',
- objectFoundInLocation(THING, 'Kazakhstan')),
- not(beliefs('UnitedStatesOfAmerica',
- (not(skolem(THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn));assets('ChevronCorporation', THING)))).
- %
- tell10:0 not_true_t(knows,UnitedStatesOfAmerica,assets(ChevronCorporation,THING)):-true_t(knows,UnitedStatesOfAmerica,objectFoundInLocation(THING,Kazakhstan)),not_true_t(beliefs,UnitedStatesOfAmerica, (not_call_builtin(skolem,THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(assets,ChevronCorporation,THING))).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- assets('ChevronCorporation',
- THING)) :-
- w_infer_by(tell10:1),
- knows('UnitedStatesOfAmerica',
- objectFoundInLocation(THING, 'Kazakhstan')),
- not(beliefs('UnitedStatesOfAmerica',
- (not(skolem(THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn));objectFoundInLocation(THING, 'Kazakhstan')))).
- %
- tell10:1 not_true_t(knows,UnitedStatesOfAmerica,assets(ChevronCorporation,THING)):-true_t(knows,UnitedStatesOfAmerica,objectFoundInLocation(THING,Kazakhstan)),not_true_t(beliefs,UnitedStatesOfAmerica, (not_call_builtin(skolem,THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(objectFoundInLocation,THING,Kazakhstan))).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- objectFoundInLocation(THING,
- 'Kazakhstan')) :-
- w_infer_by(tell10:2),
- knows('UnitedStatesOfAmerica', assets('ChevronCorporation', THING)),
- not(beliefs('UnitedStatesOfAmerica',
- (not(skolem(THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn));assets('ChevronCorporation', THING)))).
- %
- tell10:2 not_true_t(knows,UnitedStatesOfAmerica,objectFoundInLocation(THING,Kazakhstan)):-true_t(knows,UnitedStatesOfAmerica,assets(ChevronCorporation,THING)),not_true_t(beliefs,UnitedStatesOfAmerica, (not_call_builtin(skolem,THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(assets,ChevronCorporation,THING))).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- objectFoundInLocation(THING,
- 'Kazakhstan')) :-
- w_infer_by(tell10:3),
- knows('UnitedStatesOfAmerica', assets('ChevronCorporation', THING)),
- not(beliefs('UnitedStatesOfAmerica',
- (not(skolem(THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn));objectFoundInLocation(THING, 'Kazakhstan')))).
- %
- tell10:3 not_true_t(knows,UnitedStatesOfAmerica,objectFoundInLocation(THING,Kazakhstan)):-true_t(knows,UnitedStatesOfAmerica,assets(ChevronCorporation,THING)),not_true_t(beliefs,UnitedStatesOfAmerica, (not_call_builtin(skolem,THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(objectFoundInLocation,THING,Kazakhstan))).true_t(beliefs,
- 'UnitedStatesOfAmerica',
- (not_call_builtin(skolem, THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(assets, 'ChevronCorporation', THING))) :-
- w_infer_by(tell10:4),
- knows('UnitedStatesOfAmerica',
- objectFoundInLocation(THING, 'Kazakhstan')),
- knows('UnitedStatesOfAmerica', assets('ChevronCorporation', THING)).
- %
- tell10:4 true_t(beliefs,UnitedStatesOfAmerica, (not_call_builtin(skolem,THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(assets,ChevronCorporation,THING))):-true_t(knows,UnitedStatesOfAmerica,objectFoundInLocation(THING,Kazakhstan)),true_t(knows,UnitedStatesOfAmerica,assets(ChevronCorporation,THING)).true_t(beliefs,
- 'UnitedStatesOfAmerica',
- (not_call_builtin(skolem, THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(objectFoundInLocation, THING, 'Kazakhstan'))) :-
- w_infer_by(tell10:5),
- knows('UnitedStatesOfAmerica',
- objectFoundInLocation(THING, 'Kazakhstan')),
- knows('UnitedStatesOfAmerica', assets('ChevronCorporation', THING)).
- %
- tell10:5 true_t(beliefs,UnitedStatesOfAmerica, (not_call_builtin(skolem,THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(objectFoundInLocation,THING,Kazakhstan))):-true_t(knows,UnitedStatesOfAmerica,objectFoundInLocation(THING,Kazakhstan)),true_t(knows,UnitedStatesOfAmerica,assets(ChevronCorporation,THING)).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ '(knows UnitedStatesOfAmerica (thereExists ?THING (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))'
- ].
- pkif :-
- [ '(knows UnitedStatesOfAmerica (thereExists ?THING (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))'
- ].
- cnf :-
- '(knows UnitedStatesOfAmerica (thereExists ?THING (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))'.
- %
- tell11:0 (knows UnitedStatesOfAmerica (thereExists ?THING (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan)))).
- tell11:0 (knows UnitedStatesOfAmerica (thereExists ?THING (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan)))).pttp :-
- [ ('(knows UnitedStatesOfAmerica (thereExists ?THING (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))':-true)
- ].
- %
- '(knows UnitedStatesOfAmerica (thereExists ?THING (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))' :-
- w_infer_by(tell11:0),
- [].
- %
- tell11:0 (knows UnitedStatesOfAmerica (thereExists ?THING (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan)))):-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ not,
- [ beliefs('UnitedStatesOfAmerica'),
- [ not,
- [ ex[THING],
- [ assets('ChevronCorporation', THING),
- objectFoundInLocation(THING, 'Kazakhstan')
- ]
- ]
- ]
- ]
- ].
- pkif :-
- [ not,
- [ beliefs('UnitedStatesOfAmerica'),
- [ not,
- [ ex[THING],
- [ assets('ChevronCorporation', THING),
- objectFoundInLocation(THING, 'Kazakhstan')
- ]
- ]
- ]
- ]
- ].
- cnf :-
- beliefs('UnitedStatesOfAmerica',
- (not(skolem(THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn));assets('ChevronCorporation', THING))),
- beliefs('UnitedStatesOfAmerica',
- (not(skolem(THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn));objectFoundInLocation(THING, 'Kazakhstan'))).
- %
- tell12:0 true_t(beliefs,UnitedStatesOfAmerica, (not_call_builtin(skolem,THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(assets,ChevronCorporation,THING))).
- tell12:1 true_t(beliefs,UnitedStatesOfAmerica, (not_call_builtin(skolem,THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(objectFoundInLocation,THING,Kazakhstan))).pttp :-
- [ (true_t(beliefs, 'UnitedStatesOfAmerica', (not_call_builtin(skolem, THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(assets, 'ChevronCorporation', THING))):-true),
- (true_t(beliefs, 'UnitedStatesOfAmerica', (not_call_builtin(skolem, THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(objectFoundInLocation, THING, 'Kazakhstan'))):-true)
- ].
- %
- true_t(beliefs, 'UnitedStatesOfAmerica', (not_call_builtin(skolem, THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(assets, 'ChevronCorporation', THING))) :-
- w_infer_by(tell12:0),
- [].
- %
- tell12:0 true_t(beliefs,UnitedStatesOfAmerica, (not_call_builtin(skolem,THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(assets,ChevronCorporation,THING))):-[].true_t(beliefs,
- 'UnitedStatesOfAmerica',
- (not_call_builtin(skolem, THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(objectFoundInLocation, THING, 'Kazakhstan'))) :-
- w_infer_by(tell12:1),
- [].
- %
- tell12:1 true_t(beliefs,UnitedStatesOfAmerica, (not_call_builtin(skolem,THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(objectFoundInLocation,THING,Kazakhstan))):-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ '\n(not (beliefs UnitedStatesOfAmerica (not (thereExists ?THING (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))))\n'
- ].
- pkif :-
- [ '\n(not (beliefs UnitedStatesOfAmerica (not (thereExists ?THING (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))))\n'
- ].
- cnf :-
- '\n(not (beliefs UnitedStatesOfAmerica (not (thereExists ?THING (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))))\n'.
- %
- tell13:0
- (not (beliefs UnitedStatesOfAmerica (not (thereExists ?THING (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))))
- .
- tell13:0
- (not (beliefs UnitedStatesOfAmerica (not (thereExists ?THING (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))))
- .pttp :-
- [ ('\n(not (beliefs UnitedStatesOfAmerica (not (thereExists ?THING (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))))\n':-true)
- ].
- %
- '\n(not (beliefs UnitedStatesOfAmerica (not (thereExists ?THING (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))))\n' :-
- w_infer_by(tell13:0),
- [].
- %
- tell13:0
- (not (beliefs UnitedStatesOfAmerica (not (thereExists ?THING (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))))
- :-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ not,
- [ beliefs('UnitedStatesOfAmerica'),
- [ not,
- [ all[THING],
- [ not,
- [ assets('ChevronCorporation', THING),
- objectFoundInLocation(THING, 'Kazakhstan')
- ]
- ]
- ]
- ]
- ]
- ].
- pkif :-
- [ not,
- [ beliefs('UnitedStatesOfAmerica'),
- [ not,
- [ all[THING],
- [ not,
- [ assets('ChevronCorporation', THING),
- objectFoundInLocation(THING, 'Kazakhstan')
- ]
- ]
- ]
- ]
- ]
- ].
- cnf :-
- knows('UnitedStatesOfAmerica',
- skolem(THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn)),
- beliefs('UnitedStatesOfAmerica',
- (not(assets('ChevronCorporation', THING));not(objectFoundInLocation(THING, 'Kazakhstan')))).
- %
- tell14:0 true_t(knows,UnitedStatesOfAmerica,skolem(THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn)).
- tell14:1 true_t(beliefs,UnitedStatesOfAmerica, (not_true_t(assets,ChevronCorporation,THING);not_true_t(objectFoundInLocation,THING,Kazakhstan))).pttp :-
- [ (true_t(beliefs, 'UnitedStatesOfAmerica', (not_true_t(assets, 'ChevronCorporation', THING);not_true_t(objectFoundInLocation, THING, 'Kazakhstan'))):-true),
- (true_t(knows, 'UnitedStatesOfAmerica', skolem(THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn)):-true)
- ].
- %
- true_t(beliefs, 'UnitedStatesOfAmerica', (not_true_t(assets, 'ChevronCorporation', THING);not_true_t(objectFoundInLocation, THING, 'Kazakhstan'))) :-
- w_infer_by(tell14:0),
- [].
- %
- tell14:0 true_t(beliefs,UnitedStatesOfAmerica, (not_true_t(assets,ChevronCorporation,THING);not_true_t(objectFoundInLocation,THING,Kazakhstan))):-[].true_t(knows,
- 'UnitedStatesOfAmerica',
- skolem(THING,
- skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn)) :-
- w_infer_by(tell14:1),
- [].
- %
- tell14:1 true_t(knows,UnitedStatesOfAmerica,skolem(THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn)):-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ '\n(not (beliefs UnitedStatesOfAmerica (not (forAll ?THING (not (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan)))))))\n'
- ].
- pkif :-
- [ '\n(not (beliefs UnitedStatesOfAmerica (not (forAll ?THING (not (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan)))))))\n'
- ].
- cnf :-
- '\n(not (beliefs UnitedStatesOfAmerica (not (forAll ?THING (not (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan)))))))\n'.
- %
- tell15:0
- (not (beliefs UnitedStatesOfAmerica (not (forAll ?THING (not (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan)))))))
- .
- tell15:0
- (not (beliefs UnitedStatesOfAmerica (not (forAll ?THING (not (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan)))))))
- .pttp :-
- [ ('\n(not (beliefs UnitedStatesOfAmerica (not (forAll ?THING (not (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan)))))))\n':-true)
- ].
- %
- '\n(not (beliefs UnitedStatesOfAmerica (not (forAll ?THING (not (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan)))))))\n' :-
- w_infer_by(tell15:0),
- [].
- %
- tell15:0
- (not (beliefs UnitedStatesOfAmerica (not (forAll ?THING (not (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan)))))))
- :-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ knows('UnitedStatesOfAmerica',
- [ not,
- [ all[THING],
- [ not,
- [ assets('ChevronCorporation', THING),
- objectFoundInLocation(THING, 'Kazakhstan')
- ]
- ]
- ]
- ])
- ].
- pkif :-
- [ implies,
- [ poss(KB,
- knows('UnitedStatesOfAmerica',
- objectFoundInLocation(THING, 'Kazakhstan')))
- ],
- (=>),
- [ implies,
- [ poss(KB,
- knows('UnitedStatesOfAmerica',
- assets('ChevronCorporation', THING)))
- ],
- (=>),
- [ knows('UnitedStatesOfAmerica',
- [ not,
- [ all[THING],
- [ not,
- [ assets('ChevronCorporation', THING),
- objectFoundInLocation(THING, 'Kazakhstan')
- ]
- ]
- ]
- ])
- ]
- ]
- ].
- cnf :-
- ( not(knows('UnitedStatesOfAmerica',
- objectFoundInLocation(THING, 'Kazakhstan')))
- ; not(knows('UnitedStatesOfAmerica',
- assets('ChevronCorporation', THING)))
- ; beliefs('UnitedStatesOfAmerica',
- (not(skolem(THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn));assets('ChevronCorporation', THING)))
- ),
- ( not(knows('UnitedStatesOfAmerica',
- objectFoundInLocation(THING, 'Kazakhstan')))
- ; not(knows('UnitedStatesOfAmerica',
- assets('ChevronCorporation', THING)))
- ; beliefs('UnitedStatesOfAmerica',
- (not(skolem(THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn));objectFoundInLocation(THING, 'Kazakhstan')))
- ).
- %
- tell16:0 not_true_t(knows,UnitedStatesOfAmerica,objectFoundInLocation(THING,Kazakhstan));not_true_t(knows,UnitedStatesOfAmerica,assets(ChevronCorporation,THING));true_t(beliefs,UnitedStatesOfAmerica, (not_call_builtin(skolem,THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(assets,ChevronCorporation,THING))).
- tell16:1 not_true_t(knows,UnitedStatesOfAmerica,objectFoundInLocation(THING,Kazakhstan));not_true_t(knows,UnitedStatesOfAmerica,assets(ChevronCorporation,THING));true_t(beliefs,UnitedStatesOfAmerica, (not_call_builtin(skolem,THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(objectFoundInLocation,THING,Kazakhstan))).pttp :-
- [ (not_true_t(knows, 'UnitedStatesOfAmerica', assets('ChevronCorporation', THING)):-true_t(knows, 'UnitedStatesOfAmerica', objectFoundInLocation(THING, 'Kazakhstan')), not_true_t(beliefs, 'UnitedStatesOfAmerica', (not_call_builtin(skolem, THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(assets, 'ChevronCorporation', THING)))),
- (not_true_t(knows, 'UnitedStatesOfAmerica', assets('ChevronCorporation', THING)):-true_t(knows, 'UnitedStatesOfAmerica', objectFoundInLocation(THING, 'Kazakhstan')), not_true_t(beliefs, 'UnitedStatesOfAmerica', (not_call_builtin(skolem, THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(objectFoundInLocation, THING, 'Kazakhstan')))),
- (not_true_t(knows, 'UnitedStatesOfAmerica', objectFoundInLocation(THING, 'Kazakhstan')):-true_t(knows, 'UnitedStatesOfAmerica', assets('ChevronCorporation', THING)), not_true_t(beliefs, 'UnitedStatesOfAmerica', (not_call_builtin(skolem, THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(assets, 'ChevronCorporation', THING)))),
- (not_true_t(knows, 'UnitedStatesOfAmerica', objectFoundInLocation(THING, 'Kazakhstan')):-true_t(knows, 'UnitedStatesOfAmerica', assets('ChevronCorporation', THING)), not_true_t(beliefs, 'UnitedStatesOfAmerica', (not_call_builtin(skolem, THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(objectFoundInLocation, THING, 'Kazakhstan')))),
- (true_t(beliefs, 'UnitedStatesOfAmerica', (not_call_builtin(skolem, THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(assets, 'ChevronCorporation', THING))):-true_t(knows, 'UnitedStatesOfAmerica', objectFoundInLocation(THING, 'Kazakhstan')), true_t(knows, 'UnitedStatesOfAmerica', assets('ChevronCorporation', THING))),
- (true_t(beliefs, 'UnitedStatesOfAmerica', (not_call_builtin(skolem, THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(objectFoundInLocation, THING, 'Kazakhstan'))):-true_t(knows, 'UnitedStatesOfAmerica', objectFoundInLocation(THING, 'Kazakhstan')), true_t(knows, 'UnitedStatesOfAmerica', assets('ChevronCorporation', THING)))
- ].
- %
- not_true_t(knows, 'UnitedStatesOfAmerica', assets('ChevronCorporation', THING)) :-
- w_infer_by(tell16:0),
- knows('UnitedStatesOfAmerica',
- objectFoundInLocation(THING, 'Kazakhstan')),
- not(beliefs('UnitedStatesOfAmerica',
- (not(skolem(THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn));assets('ChevronCorporation', THING)))).
- %
- tell16:0 not_true_t(knows,UnitedStatesOfAmerica,assets(ChevronCorporation,THING)):-true_t(knows,UnitedStatesOfAmerica,objectFoundInLocation(THING,Kazakhstan)),not_true_t(beliefs,UnitedStatesOfAmerica, (not_call_builtin(skolem,THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(assets,ChevronCorporation,THING))).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- assets('ChevronCorporation',
- THING)) :-
- w_infer_by(tell16:1),
- knows('UnitedStatesOfAmerica',
- objectFoundInLocation(THING, 'Kazakhstan')),
- not(beliefs('UnitedStatesOfAmerica',
- (not(skolem(THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn));objectFoundInLocation(THING, 'Kazakhstan')))).
- %
- tell16:1 not_true_t(knows,UnitedStatesOfAmerica,assets(ChevronCorporation,THING)):-true_t(knows,UnitedStatesOfAmerica,objectFoundInLocation(THING,Kazakhstan)),not_true_t(beliefs,UnitedStatesOfAmerica, (not_call_builtin(skolem,THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(objectFoundInLocation,THING,Kazakhstan))).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- objectFoundInLocation(THING,
- 'Kazakhstan')) :-
- w_infer_by(tell16:2),
- knows('UnitedStatesOfAmerica', assets('ChevronCorporation', THING)),
- not(beliefs('UnitedStatesOfAmerica',
- (not(skolem(THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn));assets('ChevronCorporation', THING)))).
- %
- tell16:2 not_true_t(knows,UnitedStatesOfAmerica,objectFoundInLocation(THING,Kazakhstan)):-true_t(knows,UnitedStatesOfAmerica,assets(ChevronCorporation,THING)),not_true_t(beliefs,UnitedStatesOfAmerica, (not_call_builtin(skolem,THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(assets,ChevronCorporation,THING))).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- objectFoundInLocation(THING,
- 'Kazakhstan')) :-
- w_infer_by(tell16:3),
- knows('UnitedStatesOfAmerica', assets('ChevronCorporation', THING)),
- not(beliefs('UnitedStatesOfAmerica',
- (not(skolem(THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn));objectFoundInLocation(THING, 'Kazakhstan')))).
- %
- tell16:3 not_true_t(knows,UnitedStatesOfAmerica,objectFoundInLocation(THING,Kazakhstan)):-true_t(knows,UnitedStatesOfAmerica,assets(ChevronCorporation,THING)),not_true_t(beliefs,UnitedStatesOfAmerica, (not_call_builtin(skolem,THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(objectFoundInLocation,THING,Kazakhstan))).true_t(beliefs,
- 'UnitedStatesOfAmerica',
- (not_call_builtin(skolem, THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(assets, 'ChevronCorporation', THING))) :-
- w_infer_by(tell16:4),
- knows('UnitedStatesOfAmerica',
- objectFoundInLocation(THING, 'Kazakhstan')),
- knows('UnitedStatesOfAmerica', assets('ChevronCorporation', THING)).
- %
- tell16:4 true_t(beliefs,UnitedStatesOfAmerica, (not_call_builtin(skolem,THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(assets,ChevronCorporation,THING))):-true_t(knows,UnitedStatesOfAmerica,objectFoundInLocation(THING,Kazakhstan)),true_t(knows,UnitedStatesOfAmerica,assets(ChevronCorporation,THING)).true_t(beliefs,
- 'UnitedStatesOfAmerica',
- (not_call_builtin(skolem, THING, skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(objectFoundInLocation, THING, 'Kazakhstan'))) :-
- w_infer_by(tell16:5),
- knows('UnitedStatesOfAmerica',
- objectFoundInLocation(THING, 'Kazakhstan')),
- knows('UnitedStatesOfAmerica', assets('ChevronCorporation', THING)).
- %
- tell16:5 true_t(beliefs,UnitedStatesOfAmerica, (not_call_builtin(skolem,THING,skUnkArg2ofAssetsArg1ofObjectfoundinlocationFn);true_t(objectFoundInLocation,THING,Kazakhstan))):-true_t(knows,UnitedStatesOfAmerica,objectFoundInLocation(THING,Kazakhstan)),true_t(knows,UnitedStatesOfAmerica,assets(ChevronCorporation,THING)).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ '\n(knows UnitedStatesOfAmerica (not (forAll ?THING (not (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))))\n'
- ].
- pkif :-
- [ '\n(knows UnitedStatesOfAmerica (not (forAll ?THING (not (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))))\n'
- ].
- cnf :-
- '\n(knows UnitedStatesOfAmerica (not (forAll ?THING (not (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))))\n'.
- %
- tell17:0
- (knows UnitedStatesOfAmerica (not (forAll ?THING (not (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))))
- .
- tell17:0
- (knows UnitedStatesOfAmerica (not (forAll ?THING (not (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))))
- .pttp :-
- [ ('\n(knows UnitedStatesOfAmerica (not (forAll ?THING (not (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))))\n':-true)
- ].
- %
- '\n(knows UnitedStatesOfAmerica (not (forAll ?THING (not (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))))\n' :-
- w_infer_by(tell17:0),
- [].
- %
- tell17:0
- (knows UnitedStatesOfAmerica (not (forAll ?THING (not (and (assets ChevronCorporation ?THING) (objectFoundInLocation ?THING Kazakhstan))))))
- :-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [knows('UnitedStatesOfAmerica', ['KA', 'KB', 'KC', 'KD'])].
- pkif :-
- [ implies,
- [poss(KB, knows('UnitedStatesOfAmerica', 'KD'))],
- (=>),
- [ implies,
- [poss(KB, knows('UnitedStatesOfAmerica', 'KC'))],
- (=>),
- [ implies,
- [poss(KB, knows('UnitedStatesOfAmerica', 'KB'))],
- (=>),
- [ implies,
- [poss(KB, knows('UnitedStatesOfAmerica', 'KA'))],
- (=>),
- [knows('UnitedStatesOfAmerica', ['KA', 'KB', 'KC', 'KD'])]
- ]
- ]
- ]
- ].
- cnf :-
- ( not(knows('UnitedStatesOfAmerica', 'KD'))
- ; not(knows('UnitedStatesOfAmerica', 'KC'))
- ; not(knows('UnitedStatesOfAmerica', 'KB'))
- ; not(knows('UnitedStatesOfAmerica', 'KA'))
- ; knows('UnitedStatesOfAmerica', 'KA')
- ),
- ( not(knows('UnitedStatesOfAmerica', 'KD'))
- ; not(knows('UnitedStatesOfAmerica', 'KC'))
- ; not(knows('UnitedStatesOfAmerica', 'KB'))
- ; not(knows('UnitedStatesOfAmerica', 'KA'))
- ; knows('UnitedStatesOfAmerica', 'KB')
- ),
- ( not(knows('UnitedStatesOfAmerica', 'KD'))
- ; not(knows('UnitedStatesOfAmerica', 'KC'))
- ; not(knows('UnitedStatesOfAmerica', 'KB'))
- ; not(knows('UnitedStatesOfAmerica', 'KA'))
- ; knows('UnitedStatesOfAmerica', 'KC')
- ),
- ( not(knows('UnitedStatesOfAmerica', 'KD'))
- ; not(knows('UnitedStatesOfAmerica', 'KC'))
- ; not(knows('UnitedStatesOfAmerica', 'KB'))
- ; not(knows('UnitedStatesOfAmerica', 'KA'))
- ; knows('UnitedStatesOfAmerica', 'KD')
- ).
- %
- tell18:0 not_true_t(knows,UnitedStatesOfAmerica,KD);not_true_t(knows,UnitedStatesOfAmerica,KC);not_true_t(knows,UnitedStatesOfAmerica,KB);not_true_t(knows,UnitedStatesOfAmerica,KA);true_t(knows,UnitedStatesOfAmerica,KA).
- tell18:1 not_true_t(knows,UnitedStatesOfAmerica,KD);not_true_t(knows,UnitedStatesOfAmerica,KC);not_true_t(knows,UnitedStatesOfAmerica,KB);not_true_t(knows,UnitedStatesOfAmerica,KA);true_t(knows,UnitedStatesOfAmerica,KB).
- tell18:2 not_true_t(knows,UnitedStatesOfAmerica,KD);not_true_t(knows,UnitedStatesOfAmerica,KC);not_true_t(knows,UnitedStatesOfAmerica,KB);not_true_t(knows,UnitedStatesOfAmerica,KA);true_t(knows,UnitedStatesOfAmerica,KC).
- tell18:3 not_true_t(knows,UnitedStatesOfAmerica,KD);not_true_t(knows,UnitedStatesOfAmerica,KC);not_true_t(knows,UnitedStatesOfAmerica,KB);not_true_t(knows,UnitedStatesOfAmerica,KA);true_t(knows,UnitedStatesOfAmerica,KD).pttp :-
- [ (not_true_t(knows, 'UnitedStatesOfAmerica', 'KA'):-true_t(knows, 'UnitedStatesOfAmerica', 'KD'), true_t(knows, 'UnitedStatesOfAmerica', 'KC'), true_t(knows, 'UnitedStatesOfAmerica', 'KB'), call(false)),
- (not_true_t(knows, 'UnitedStatesOfAmerica', 'KA'):-true_t(knows, 'UnitedStatesOfAmerica', 'KD'), true_t(knows, 'UnitedStatesOfAmerica', 'KC'), true_t(knows, 'UnitedStatesOfAmerica', 'KB'), not_true_t(knows, 'UnitedStatesOfAmerica', 'KB')),
- (not_true_t(knows, 'UnitedStatesOfAmerica', 'KA'):-true_t(knows, 'UnitedStatesOfAmerica', 'KD'), true_t(knows, 'UnitedStatesOfAmerica', 'KC'), true_t(knows, 'UnitedStatesOfAmerica', 'KB'), not_true_t(knows, 'UnitedStatesOfAmerica', 'KC')),
- (not_true_t(knows, 'UnitedStatesOfAmerica', 'KA'):-true_t(knows, 'UnitedStatesOfAmerica', 'KD'), true_t(knows, 'UnitedStatesOfAmerica', 'KC'), true_t(knows, 'UnitedStatesOfAmerica', 'KB'), not_true_t(knows, 'UnitedStatesOfAmerica', 'KD')),
- (not_true_t(knows, 'UnitedStatesOfAmerica', 'KB'):-true_t(knows, 'UnitedStatesOfAmerica', 'KD'), true_t(knows, 'UnitedStatesOfAmerica', 'KC'), true_t(knows, 'UnitedStatesOfAmerica', 'KA'), not_true_t(knows, 'UnitedStatesOfAmerica', 'KA')),
- (not_true_t(knows, 'UnitedStatesOfAmerica', 'KB'):-true_t(knows, 'UnitedStatesOfAmerica', 'KD'), true_t(knows, 'UnitedStatesOfAmerica', 'KC'), true_t(knows, 'UnitedStatesOfAmerica', 'KA'), not_true_t(knows, 'UnitedStatesOfAmerica', 'KC')),
- (not_true_t(knows, 'UnitedStatesOfAmerica', 'KB'):-true_t(knows, 'UnitedStatesOfAmerica', 'KD'), true_t(knows, 'UnitedStatesOfAmerica', 'KC'), true_t(knows, 'UnitedStatesOfAmerica', 'KA'), not_true_t(knows, 'UnitedStatesOfAmerica', 'KD')),
- (not_true_t(knows, 'UnitedStatesOfAmerica', 'KB'):-true_t(knows, 'UnitedStatesOfAmerica', 'KD'), true_t(knows, 'UnitedStatesOfAmerica', 'KC'), not_true_t(knows, 'UnitedStatesOfAmerica', 'KA')),
- (not_true_t(knows, 'UnitedStatesOfAmerica', 'KC'):-true_t(knows, 'UnitedStatesOfAmerica', 'KD'), true_t(knows, 'UnitedStatesOfAmerica', 'KB'), true_t(knows, 'UnitedStatesOfAmerica', 'KA'), not_true_t(knows, 'UnitedStatesOfAmerica', 'KA')),
- (not_true_t(knows, 'UnitedStatesOfAmerica', 'KC'):-true_t(knows, 'UnitedStatesOfAmerica', 'KD'), true_t(knows, 'UnitedStatesOfAmerica', 'KB'), true_t(knows, 'UnitedStatesOfAmerica', 'KA'), not_true_t(knows, 'UnitedStatesOfAmerica', 'KB')),
- (not_true_t(knows, 'UnitedStatesOfAmerica', 'KC'):-true_t(knows, 'UnitedStatesOfAmerica', 'KD'), true_t(knows, 'UnitedStatesOfAmerica', 'KB'), true_t(knows, 'UnitedStatesOfAmerica', 'KA'), not_true_t(knows, 'UnitedStatesOfAmerica', 'KD')),
- (not_true_t(knows, 'UnitedStatesOfAmerica', 'KC'):-true_t(knows, 'UnitedStatesOfAmerica', 'KD'), true_t(knows, 'UnitedStatesOfAmerica', 'KB'), not_true_t(knows, 'UnitedStatesOfAmerica', 'KA')),
- (not_true_t(knows, 'UnitedStatesOfAmerica', 'KD'):-true_t(knows, 'UnitedStatesOfAmerica', 'KC'), true_t(knows, 'UnitedStatesOfAmerica', 'KB'), true_t(knows, 'UnitedStatesOfAmerica', 'KA'), not_true_t(knows, 'UnitedStatesOfAmerica', 'KA')),
- (not_true_t(knows, 'UnitedStatesOfAmerica', 'KD'):-true_t(knows, 'UnitedStatesOfAmerica', 'KC'), true_t(knows, 'UnitedStatesOfAmerica', 'KB'), true_t(knows, 'UnitedStatesOfAmerica', 'KA'), not_true_t(knows, 'UnitedStatesOfAmerica', 'KB')),
- (not_true_t(knows, 'UnitedStatesOfAmerica', 'KD'):-true_t(knows, 'UnitedStatesOfAmerica', 'KC'), true_t(knows, 'UnitedStatesOfAmerica', 'KB'), true_t(knows, 'UnitedStatesOfAmerica', 'KA'), not_true_t(knows, 'UnitedStatesOfAmerica', 'KC')),
- (not_true_t(knows, 'UnitedStatesOfAmerica', 'KD'):-true_t(knows, 'UnitedStatesOfAmerica', 'KC'), true_t(knows, 'UnitedStatesOfAmerica', 'KB'), not_true_t(knows, 'UnitedStatesOfAmerica', 'KA')),
- (true_t(knows, 'UnitedStatesOfAmerica', 'KA'):-true_t(knows, 'UnitedStatesOfAmerica', 'KD'), true_t(knows, 'UnitedStatesOfAmerica', 'KC'), true_t(knows, 'UnitedStatesOfAmerica', 'KB'), call(false)),
- (true_t(knows, 'UnitedStatesOfAmerica', 'KB'):-true_t(knows, 'UnitedStatesOfAmerica', 'KD'), true_t(knows, 'UnitedStatesOfAmerica', 'KC'), not_true_t(knows, 'UnitedStatesOfAmerica', 'KA')),
- (true_t(knows, 'UnitedStatesOfAmerica', 'KC'):-true_t(knows, 'UnitedStatesOfAmerica', 'KD'), (not(true_t(knows, 'UnitedStatesOfAmerica', 'KB'));not(true_t(knows, 'UnitedStatesOfAmerica', 'KA')))),
- (true_t(knows, 'UnitedStatesOfAmerica', 'KD'):-not(true_t(knows, 'UnitedStatesOfAmerica', 'KC'));not(true_t(knows, 'UnitedStatesOfAmerica', 'KB'));not(true_t(knows, 'UnitedStatesOfAmerica', 'KA')))
- ].
- %
- not_true_t(knows, 'UnitedStatesOfAmerica', 'KA') :-
- w_infer_by(tell18:0),
- knows('UnitedStatesOfAmerica', 'KD'),
- knows('UnitedStatesOfAmerica', 'KC'),
- knows('UnitedStatesOfAmerica', 'KB'),
- call(false).
- %
- tell18:0 not_true_t(knows,UnitedStatesOfAmerica,KA):-true_t(knows,UnitedStatesOfAmerica,KD),true_t(knows,UnitedStatesOfAmerica,KC),true_t(knows,UnitedStatesOfAmerica,KB),call_builtin(call,false).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KA') :-
- w_infer_by(tell18:1),
- knows('UnitedStatesOfAmerica', 'KD'),
- knows('UnitedStatesOfAmerica', 'KC'),
- knows('UnitedStatesOfAmerica', 'KB'),
- not(knows('UnitedStatesOfAmerica', 'KB')).
- %
- tell18:1 not_true_t(knows,UnitedStatesOfAmerica,KA):-true_t(knows,UnitedStatesOfAmerica,KD),true_t(knows,UnitedStatesOfAmerica,KC),true_t(knows,UnitedStatesOfAmerica,KB),not_true_t(knows,UnitedStatesOfAmerica,KB).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KA') :-
- w_infer_by(tell18:2),
- knows('UnitedStatesOfAmerica', 'KD'),
- knows('UnitedStatesOfAmerica', 'KC'),
- knows('UnitedStatesOfAmerica', 'KB'),
- not(knows('UnitedStatesOfAmerica', 'KC')).
- %
- tell18:2 not_true_t(knows,UnitedStatesOfAmerica,KA):-true_t(knows,UnitedStatesOfAmerica,KD),true_t(knows,UnitedStatesOfAmerica,KC),true_t(knows,UnitedStatesOfAmerica,KB),not_true_t(knows,UnitedStatesOfAmerica,KC).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KA') :-
- w_infer_by(tell18:3),
- knows('UnitedStatesOfAmerica', 'KD'),
- knows('UnitedStatesOfAmerica', 'KC'),
- knows('UnitedStatesOfAmerica', 'KB'),
- not(knows('UnitedStatesOfAmerica', 'KD')).
- %
- tell18:3 not_true_t(knows,UnitedStatesOfAmerica,KA):-true_t(knows,UnitedStatesOfAmerica,KD),true_t(knows,UnitedStatesOfAmerica,KC),true_t(knows,UnitedStatesOfAmerica,KB),not_true_t(knows,UnitedStatesOfAmerica,KD).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KB') :-
- w_infer_by(tell18:4),
- knows('UnitedStatesOfAmerica', 'KD'),
- knows('UnitedStatesOfAmerica', 'KC'),
- knows('UnitedStatesOfAmerica', 'KA'),
- not(knows('UnitedStatesOfAmerica', 'KA')).
- %
- tell18:4 not_true_t(knows,UnitedStatesOfAmerica,KB):-true_t(knows,UnitedStatesOfAmerica,KD),true_t(knows,UnitedStatesOfAmerica,KC),true_t(knows,UnitedStatesOfAmerica,KA),not_true_t(knows,UnitedStatesOfAmerica,KA).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KB') :-
- w_infer_by(tell18:5),
- knows('UnitedStatesOfAmerica', 'KD'),
- knows('UnitedStatesOfAmerica', 'KC'),
- knows('UnitedStatesOfAmerica', 'KA'),
- not(knows('UnitedStatesOfAmerica', 'KC')).
- %
- tell18:5 not_true_t(knows,UnitedStatesOfAmerica,KB):-true_t(knows,UnitedStatesOfAmerica,KD),true_t(knows,UnitedStatesOfAmerica,KC),true_t(knows,UnitedStatesOfAmerica,KA),not_true_t(knows,UnitedStatesOfAmerica,KC).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KB') :-
- w_infer_by(tell18:6),
- knows('UnitedStatesOfAmerica', 'KD'),
- knows('UnitedStatesOfAmerica', 'KC'),
- knows('UnitedStatesOfAmerica', 'KA'),
- not(knows('UnitedStatesOfAmerica', 'KD')).
- %
- tell18:6 not_true_t(knows,UnitedStatesOfAmerica,KB):-true_t(knows,UnitedStatesOfAmerica,KD),true_t(knows,UnitedStatesOfAmerica,KC),true_t(knows,UnitedStatesOfAmerica,KA),not_true_t(knows,UnitedStatesOfAmerica,KD).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KB') :-
- w_infer_by(tell18:7),
- knows('UnitedStatesOfAmerica', 'KD'),
- knows('UnitedStatesOfAmerica', 'KC'),
- not(knows('UnitedStatesOfAmerica', 'KA')).
- %
- tell18:7 not_true_t(knows,UnitedStatesOfAmerica,KB):-true_t(knows,UnitedStatesOfAmerica,KD),true_t(knows,UnitedStatesOfAmerica,KC),not_true_t(knows,UnitedStatesOfAmerica,KA).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KC') :-
- w_infer_by(tell18:8),
- knows('UnitedStatesOfAmerica', 'KD'),
- knows('UnitedStatesOfAmerica', 'KB'),
- knows('UnitedStatesOfAmerica', 'KA'),
- not(knows('UnitedStatesOfAmerica', 'KA')).
- %
- tell18:8 not_true_t(knows,UnitedStatesOfAmerica,KC):-true_t(knows,UnitedStatesOfAmerica,KD),true_t(knows,UnitedStatesOfAmerica,KB),true_t(knows,UnitedStatesOfAmerica,KA),not_true_t(knows,UnitedStatesOfAmerica,KA).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KC') :-
- w_infer_by(tell18:9),
- knows('UnitedStatesOfAmerica', 'KD'),
- knows('UnitedStatesOfAmerica', 'KB'),
- knows('UnitedStatesOfAmerica', 'KA'),
- not(knows('UnitedStatesOfAmerica', 'KB')).
- %
- tell18:9 not_true_t(knows,UnitedStatesOfAmerica,KC):-true_t(knows,UnitedStatesOfAmerica,KD),true_t(knows,UnitedStatesOfAmerica,KB),true_t(knows,UnitedStatesOfAmerica,KA),not_true_t(knows,UnitedStatesOfAmerica,KB).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KC') :-
- w_infer_by(tell18:10),
- knows('UnitedStatesOfAmerica', 'KD'),
- knows('UnitedStatesOfAmerica', 'KB'),
- knows('UnitedStatesOfAmerica', 'KA'),
- not(knows('UnitedStatesOfAmerica', 'KD')).
- %
- tell18:10 not_true_t(knows,UnitedStatesOfAmerica,KC):-true_t(knows,UnitedStatesOfAmerica,KD),true_t(knows,UnitedStatesOfAmerica,KB),true_t(knows,UnitedStatesOfAmerica,KA),not_true_t(knows,UnitedStatesOfAmerica,KD).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KC') :-
- w_infer_by(tell18:11),
- knows('UnitedStatesOfAmerica', 'KD'),
- knows('UnitedStatesOfAmerica', 'KB'),
- not(knows('UnitedStatesOfAmerica', 'KA')).
- %
- tell18:11 not_true_t(knows,UnitedStatesOfAmerica,KC):-true_t(knows,UnitedStatesOfAmerica,KD),true_t(knows,UnitedStatesOfAmerica,KB),not_true_t(knows,UnitedStatesOfAmerica,KA).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KD') :-
- w_infer_by(tell18:12),
- knows('UnitedStatesOfAmerica', 'KC'),
- knows('UnitedStatesOfAmerica', 'KB'),
- knows('UnitedStatesOfAmerica', 'KA'),
- not(knows('UnitedStatesOfAmerica', 'KA')).
- %
- tell18:12 not_true_t(knows,UnitedStatesOfAmerica,KD):-true_t(knows,UnitedStatesOfAmerica,KC),true_t(knows,UnitedStatesOfAmerica,KB),true_t(knows,UnitedStatesOfAmerica,KA),not_true_t(knows,UnitedStatesOfAmerica,KA).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KD') :-
- w_infer_by(tell18:13),
- knows('UnitedStatesOfAmerica', 'KC'),
- knows('UnitedStatesOfAmerica', 'KB'),
- knows('UnitedStatesOfAmerica', 'KA'),
- not(knows('UnitedStatesOfAmerica', 'KB')).
- %
- tell18:13 not_true_t(knows,UnitedStatesOfAmerica,KD):-true_t(knows,UnitedStatesOfAmerica,KC),true_t(knows,UnitedStatesOfAmerica,KB),true_t(knows,UnitedStatesOfAmerica,KA),not_true_t(knows,UnitedStatesOfAmerica,KB).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KD') :-
- w_infer_by(tell18:14),
- knows('UnitedStatesOfAmerica', 'KC'),
- knows('UnitedStatesOfAmerica', 'KB'),
- knows('UnitedStatesOfAmerica', 'KA'),
- not(knows('UnitedStatesOfAmerica', 'KC')).
- %
- tell18:14 not_true_t(knows,UnitedStatesOfAmerica,KD):-true_t(knows,UnitedStatesOfAmerica,KC),true_t(knows,UnitedStatesOfAmerica,KB),true_t(knows,UnitedStatesOfAmerica,KA),not_true_t(knows,UnitedStatesOfAmerica,KC).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KD') :-
- w_infer_by(tell18:15),
- knows('UnitedStatesOfAmerica', 'KC'),
- knows('UnitedStatesOfAmerica', 'KB'),
- not(knows('UnitedStatesOfAmerica', 'KA')).
- %
- tell18:15 not_true_t(knows,UnitedStatesOfAmerica,KD):-true_t(knows,UnitedStatesOfAmerica,KC),true_t(knows,UnitedStatesOfAmerica,KB),not_true_t(knows,UnitedStatesOfAmerica,KA).true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KA') :-
- w_infer_by(tell18:16),
- knows('UnitedStatesOfAmerica', 'KD'),
- knows('UnitedStatesOfAmerica', 'KC'),
- knows('UnitedStatesOfAmerica', 'KB'),
- call(false).
- %
- tell18:16 true_t(knows,UnitedStatesOfAmerica,KA):-true_t(knows,UnitedStatesOfAmerica,KD),true_t(knows,UnitedStatesOfAmerica,KC),true_t(knows,UnitedStatesOfAmerica,KB),call_builtin(call,false).true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KB') :-
- w_infer_by(tell18:17),
- knows('UnitedStatesOfAmerica', 'KD'),
- knows('UnitedStatesOfAmerica', 'KC'),
- not(knows('UnitedStatesOfAmerica', 'KA')).
- %
- tell18:17 true_t(knows,UnitedStatesOfAmerica,KB):-true_t(knows,UnitedStatesOfAmerica,KD),true_t(knows,UnitedStatesOfAmerica,KC),not_true_t(knows,UnitedStatesOfAmerica,KA).true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KC') :-
- w_infer_by(tell18:18),
- knows('UnitedStatesOfAmerica', 'KD'),
- ( not(knows('UnitedStatesOfAmerica', 'KB'))
- ; not(knows('UnitedStatesOfAmerica', 'KA'))
- ).
- %
- tell18:18 true_t(knows,UnitedStatesOfAmerica,KC):-true_t(knows,UnitedStatesOfAmerica,KD), (not_true_t(knows,UnitedStatesOfAmerica,KB);not_true_t(knows,UnitedStatesOfAmerica,KA)).true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KD') :-
- w_infer_by(tell18:19),
- ( not(knows('UnitedStatesOfAmerica', 'KC'))
- ; not(knows('UnitedStatesOfAmerica', 'KB'))
- ; not(knows('UnitedStatesOfAmerica', 'KA'))
- ).
- %
- tell18:19 true_t(knows,UnitedStatesOfAmerica,KD):-not_true_t(knows,UnitedStatesOfAmerica,KC);not_true_t(knows,UnitedStatesOfAmerica,KB);not_true_t(knows,UnitedStatesOfAmerica,KA).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- ['\n(knows UnitedStatesOfAmerica (and KA KB KC KD))\n'].
- pkif :-
- ['\n(knows UnitedStatesOfAmerica (and KA KB KC KD))\n'].
- cnf :-
- '\n(knows UnitedStatesOfAmerica (and KA KB KC KD))\n'.
- %
- tell19:0
- (knows UnitedStatesOfAmerica (and KA KB KC KD))
- .
- tell19:0
- (knows UnitedStatesOfAmerica (and KA KB KC KD))
- .pttp :-
- [ ('\n(knows UnitedStatesOfAmerica (and KA KB KC KD))\n':-true)].
- %
- '\n(knows UnitedStatesOfAmerica (and KA KB KC KD))\n' :-
- w_infer_by(tell19:0),
- [].
- %
- tell19:0
- (knows UnitedStatesOfAmerica (and KA KB KC KD))
- :-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [beliefs('UnitedStatesOfAmerica'), ['BA', 'BB', 'BC', 'BD']].
- pkif :-
- [ implies,
- [poss(KB, [beliefs('UnitedStatesOfAmerica'), ['BD']])],
- (=>),
- [ implies,
- [poss(KB, [beliefs('UnitedStatesOfAmerica'), ['BC']])],
- (=>),
- [ implies,
- [poss(KB, [beliefs('UnitedStatesOfAmerica'), ['BB']])],
- (=>),
- [ implies,
- [poss(KB, [beliefs('UnitedStatesOfAmerica'), ['BA']])],
- (=>),
- [beliefs('UnitedStatesOfAmerica'), ['BA', 'BB', 'BC', 'BD']]
- ]
- ]
- ]
- ].
- cnf :-
- ( not(beliefs('UnitedStatesOfAmerica', 'BD'))
- ; not(beliefs('UnitedStatesOfAmerica', 'BC'))
- ; not(beliefs('UnitedStatesOfAmerica', 'BB'))
- ; not(beliefs('UnitedStatesOfAmerica', 'BA'))
- ; beliefs('UnitedStatesOfAmerica', ('BA', 'BB', 'BC', 'BD'))
- ).
- %
- tell20:0 not_true_t(beliefs,UnitedStatesOfAmerica,BD);not_true_t(beliefs,UnitedStatesOfAmerica,BC);not_true_t(beliefs,UnitedStatesOfAmerica,BB);not_true_t(beliefs,UnitedStatesOfAmerica,BA);true_t(beliefs,UnitedStatesOfAmerica, (BA,BB,BC,BD)).pttp :-
- [ (not_true_t(beliefs, 'UnitedStatesOfAmerica', 'BA'):-true_t(beliefs, 'UnitedStatesOfAmerica', 'BD'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BC'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BB'), not_true_t(beliefs, 'UnitedStatesOfAmerica', ('BA', 'BB', 'BC', 'BD'))),
- (not_true_t(beliefs, 'UnitedStatesOfAmerica', 'BB'):-true_t(beliefs, 'UnitedStatesOfAmerica', 'BD'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BC'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BA'), not_true_t(beliefs, 'UnitedStatesOfAmerica', ('BA', 'BB', 'BC', 'BD'))),
- (not_true_t(beliefs, 'UnitedStatesOfAmerica', 'BC'):-true_t(beliefs, 'UnitedStatesOfAmerica', 'BD'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BB'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BA'), not_true_t(beliefs, 'UnitedStatesOfAmerica', ('BA', 'BB', 'BC', 'BD'))),
- (not_true_t(beliefs, 'UnitedStatesOfAmerica', 'BD'):-true_t(beliefs, 'UnitedStatesOfAmerica', 'BC'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BB'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BA'), not_true_t(beliefs, 'UnitedStatesOfAmerica', ('BA', 'BB', 'BC', 'BD'))),
- (true_t(beliefs, 'UnitedStatesOfAmerica', ('BA', 'BB', 'BC', 'BD')):-true_t(beliefs, 'UnitedStatesOfAmerica', 'BD'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BC'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BB'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BA'))
- ].
- %
- not_true_t(beliefs, 'UnitedStatesOfAmerica', 'BA') :-
- w_infer_by(tell20:0),
- beliefs('UnitedStatesOfAmerica', 'BD'),
- beliefs('UnitedStatesOfAmerica', 'BC'),
- beliefs('UnitedStatesOfAmerica', 'BB'),
- not(beliefs('UnitedStatesOfAmerica', ('BA', 'BB', 'BC', 'BD'))).
- %
- tell20:0 not_true_t(beliefs,UnitedStatesOfAmerica,BA):-true_t(beliefs,UnitedStatesOfAmerica,BD),true_t(beliefs,UnitedStatesOfAmerica,BC),true_t(beliefs,UnitedStatesOfAmerica,BB),not_true_t(beliefs,UnitedStatesOfAmerica, (BA,BB,BC,BD)).not_true_t(beliefs,
- 'UnitedStatesOfAmerica',
- 'BB') :-
- w_infer_by(tell20:1),
- beliefs('UnitedStatesOfAmerica', 'BD'),
- beliefs('UnitedStatesOfAmerica', 'BC'),
- beliefs('UnitedStatesOfAmerica', 'BA'),
- not(beliefs('UnitedStatesOfAmerica', ('BA', 'BB', 'BC', 'BD'))).
- %
- tell20:1 not_true_t(beliefs,UnitedStatesOfAmerica,BB):-true_t(beliefs,UnitedStatesOfAmerica,BD),true_t(beliefs,UnitedStatesOfAmerica,BC),true_t(beliefs,UnitedStatesOfAmerica,BA),not_true_t(beliefs,UnitedStatesOfAmerica, (BA,BB,BC,BD)).not_true_t(beliefs,
- 'UnitedStatesOfAmerica',
- 'BC') :-
- w_infer_by(tell20:2),
- beliefs('UnitedStatesOfAmerica', 'BD'),
- beliefs('UnitedStatesOfAmerica', 'BB'),
- beliefs('UnitedStatesOfAmerica', 'BA'),
- not(beliefs('UnitedStatesOfAmerica', ('BA', 'BB', 'BC', 'BD'))).
- %
- tell20:2 not_true_t(beliefs,UnitedStatesOfAmerica,BC):-true_t(beliefs,UnitedStatesOfAmerica,BD),true_t(beliefs,UnitedStatesOfAmerica,BB),true_t(beliefs,UnitedStatesOfAmerica,BA),not_true_t(beliefs,UnitedStatesOfAmerica, (BA,BB,BC,BD)).not_true_t(beliefs,
- 'UnitedStatesOfAmerica',
- 'BD') :-
- w_infer_by(tell20:3),
- beliefs('UnitedStatesOfAmerica', 'BC'),
- beliefs('UnitedStatesOfAmerica', 'BB'),
- beliefs('UnitedStatesOfAmerica', 'BA'),
- not(beliefs('UnitedStatesOfAmerica', ('BA', 'BB', 'BC', 'BD'))).
- %
- tell20:3 not_true_t(beliefs,UnitedStatesOfAmerica,BD):-true_t(beliefs,UnitedStatesOfAmerica,BC),true_t(beliefs,UnitedStatesOfAmerica,BB),true_t(beliefs,UnitedStatesOfAmerica,BA),not_true_t(beliefs,UnitedStatesOfAmerica, (BA,BB,BC,BD)).true_t(beliefs,
- 'UnitedStatesOfAmerica',
- ('BA', 'BB', 'BC', 'BD')) :-
- w_infer_by(tell20:4),
- beliefs('UnitedStatesOfAmerica', 'BD'),
- beliefs('UnitedStatesOfAmerica', 'BC'),
- beliefs('UnitedStatesOfAmerica', 'BB'),
- beliefs('UnitedStatesOfAmerica', 'BA').
- %
- tell20:4 true_t(beliefs,UnitedStatesOfAmerica, (BA,BB,BC,BD)):-true_t(beliefs,UnitedStatesOfAmerica,BD),true_t(beliefs,UnitedStatesOfAmerica,BC),true_t(beliefs,UnitedStatesOfAmerica,BB),true_t(beliefs,UnitedStatesOfAmerica,BA).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- ['\n(beliefs UnitedStatesOfAmerica (and BA BB BC BD))\n'].
- pkif :-
- ['\n(beliefs UnitedStatesOfAmerica (and BA BB BC BD))\n'].
- cnf :-
- '\n(beliefs UnitedStatesOfAmerica (and BA BB BC BD))\n'.
- %
- tell21:0
- (beliefs UnitedStatesOfAmerica (and BA BB BC BD))
- .
- tell21:0
- (beliefs UnitedStatesOfAmerica (and BA BB BC BD))
- .pttp :-
- [ ('\n(beliefs UnitedStatesOfAmerica (and BA BB BC BD))\n':-true)].
- %
- '\n(beliefs UnitedStatesOfAmerica (and BA BB BC BD))\n' :-
- w_infer_by(tell21:0),
- [].
- %
- tell21:0
- (beliefs UnitedStatesOfAmerica (and BA BB BC BD))
- :-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [knows('UnitedStatesOfAmerica', ('KOA';'KOB';'KOC';'KOD'))].
- pkif :-
- [ implies,
- [poss(KB, knows('UnitedStatesOfAmerica', 'KOD'))],
- (=>),
- [ implies,
- [poss(KB, knows('UnitedStatesOfAmerica', 'KOC'))],
- (=>),
- [ implies,
- [poss(KB, knows('UnitedStatesOfAmerica', 'KOB'))],
- (=>),
- [ implies,
- [poss(KB, knows('UnitedStatesOfAmerica', 'KOA'))],
- (=>),
- [knows('UnitedStatesOfAmerica', ('KOA';'KOB';'KOC';'KOD'))]
- ]
- ]
- ]
- ].
- cnf :-
- ( not(knows('UnitedStatesOfAmerica', 'KOD'))
- ; not(knows('UnitedStatesOfAmerica', 'KOC'))
- ; not(knows('UnitedStatesOfAmerica', 'KOB'))
- ; not(knows('UnitedStatesOfAmerica', 'KOA'))
- ; beliefs('UnitedStatesOfAmerica', ('KOA';'KOB';'KOC';'KOD'))
- ).
- %
- tell22:0 not_true_t(knows,UnitedStatesOfAmerica,KOD);not_true_t(knows,UnitedStatesOfAmerica,KOC);not_true_t(knows,UnitedStatesOfAmerica,KOB);not_true_t(knows,UnitedStatesOfAmerica,KOA);true_t(beliefs,UnitedStatesOfAmerica, (KOA;KOB;KOC;KOD)).pttp :-
- [ (not_true_t(knows, 'UnitedStatesOfAmerica', 'KOA'):-true_t(knows, 'UnitedStatesOfAmerica', 'KOD'), true_t(knows, 'UnitedStatesOfAmerica', 'KOC'), true_t(knows, 'UnitedStatesOfAmerica', 'KOB'), not_true_t(beliefs, 'UnitedStatesOfAmerica', ('KOA';'KOB';'KOC';'KOD'))),
- (not_true_t(knows, 'UnitedStatesOfAmerica', 'KOB'):-true_t(knows, 'UnitedStatesOfAmerica', 'KOD'), true_t(knows, 'UnitedStatesOfAmerica', 'KOC'), true_t(knows, 'UnitedStatesOfAmerica', 'KOA'), not_true_t(beliefs, 'UnitedStatesOfAmerica', ('KOA';'KOB';'KOC';'KOD'))),
- (not_true_t(knows, 'UnitedStatesOfAmerica', 'KOC'):-true_t(knows, 'UnitedStatesOfAmerica', 'KOD'), true_t(knows, 'UnitedStatesOfAmerica', 'KOB'), true_t(knows, 'UnitedStatesOfAmerica', 'KOA'), not_true_t(beliefs, 'UnitedStatesOfAmerica', ('KOA';'KOB';'KOC';'KOD'))),
- (not_true_t(knows, 'UnitedStatesOfAmerica', 'KOD'):-true_t(knows, 'UnitedStatesOfAmerica', 'KOC'), true_t(knows, 'UnitedStatesOfAmerica', 'KOB'), true_t(knows, 'UnitedStatesOfAmerica', 'KOA'), not_true_t(beliefs, 'UnitedStatesOfAmerica', ('KOA';'KOB';'KOC';'KOD'))),
- (true_t(beliefs, 'UnitedStatesOfAmerica', ('KOA';'KOB';'KOC';'KOD')):-true_t(knows, 'UnitedStatesOfAmerica', 'KOD'), true_t(knows, 'UnitedStatesOfAmerica', 'KOC'), true_t(knows, 'UnitedStatesOfAmerica', 'KOB'), true_t(knows, 'UnitedStatesOfAmerica', 'KOA'))
- ].
- %
- not_true_t(knows, 'UnitedStatesOfAmerica', 'KOA') :-
- w_infer_by(tell22:0),
- knows('UnitedStatesOfAmerica', 'KOD'),
- knows('UnitedStatesOfAmerica', 'KOC'),
- knows('UnitedStatesOfAmerica', 'KOB'),
- not(beliefs('UnitedStatesOfAmerica', ('KOA';'KOB';'KOC';'KOD'))).
- %
- tell22:0 not_true_t(knows,UnitedStatesOfAmerica,KOA):-true_t(knows,UnitedStatesOfAmerica,KOD),true_t(knows,UnitedStatesOfAmerica,KOC),true_t(knows,UnitedStatesOfAmerica,KOB),not_true_t(beliefs,UnitedStatesOfAmerica, (KOA;KOB;KOC;KOD)).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KOB') :-
- w_infer_by(tell22:1),
- knows('UnitedStatesOfAmerica', 'KOD'),
- knows('UnitedStatesOfAmerica', 'KOC'),
- knows('UnitedStatesOfAmerica', 'KOA'),
- not(beliefs('UnitedStatesOfAmerica', ('KOA';'KOB';'KOC';'KOD'))).
- %
- tell22:1 not_true_t(knows,UnitedStatesOfAmerica,KOB):-true_t(knows,UnitedStatesOfAmerica,KOD),true_t(knows,UnitedStatesOfAmerica,KOC),true_t(knows,UnitedStatesOfAmerica,KOA),not_true_t(beliefs,UnitedStatesOfAmerica, (KOA;KOB;KOC;KOD)).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KOC') :-
- w_infer_by(tell22:2),
- knows('UnitedStatesOfAmerica', 'KOD'),
- knows('UnitedStatesOfAmerica', 'KOB'),
- knows('UnitedStatesOfAmerica', 'KOA'),
- not(beliefs('UnitedStatesOfAmerica', ('KOA';'KOB';'KOC';'KOD'))).
- %
- tell22:2 not_true_t(knows,UnitedStatesOfAmerica,KOC):-true_t(knows,UnitedStatesOfAmerica,KOD),true_t(knows,UnitedStatesOfAmerica,KOB),true_t(knows,UnitedStatesOfAmerica,KOA),not_true_t(beliefs,UnitedStatesOfAmerica, (KOA;KOB;KOC;KOD)).not_true_t(knows,
- 'UnitedStatesOfAmerica',
- 'KOD') :-
- w_infer_by(tell22:3),
- knows('UnitedStatesOfAmerica', 'KOC'),
- knows('UnitedStatesOfAmerica', 'KOB'),
- knows('UnitedStatesOfAmerica', 'KOA'),
- not(beliefs('UnitedStatesOfAmerica', ('KOA';'KOB';'KOC';'KOD'))).
- %
- tell22:3 not_true_t(knows,UnitedStatesOfAmerica,KOD):-true_t(knows,UnitedStatesOfAmerica,KOC),true_t(knows,UnitedStatesOfAmerica,KOB),true_t(knows,UnitedStatesOfAmerica,KOA),not_true_t(beliefs,UnitedStatesOfAmerica, (KOA;KOB;KOC;KOD)).true_t(beliefs,
- 'UnitedStatesOfAmerica',
- ('KOA';'KOB';'KOC';'KOD')) :-
- w_infer_by(tell22:4),
- knows('UnitedStatesOfAmerica', 'KOD'),
- knows('UnitedStatesOfAmerica', 'KOC'),
- knows('UnitedStatesOfAmerica', 'KOB'),
- knows('UnitedStatesOfAmerica', 'KOA').
- %
- tell22:4 true_t(beliefs,UnitedStatesOfAmerica, (KOA;KOB;KOC;KOD)):-true_t(knows,UnitedStatesOfAmerica,KOD),true_t(knows,UnitedStatesOfAmerica,KOC),true_t(knows,UnitedStatesOfAmerica,KOB),true_t(knows,UnitedStatesOfAmerica,KOA).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- ['\n(knows UnitedStatesOfAmerica (or KOA KOB KOC KOD))\n'].
- pkif :-
- ['\n(knows UnitedStatesOfAmerica (or KOA KOB KOC KOD))\n'].
- cnf :-
- '\n(knows UnitedStatesOfAmerica (or KOA KOB KOC KOD))\n'.
- %
- tell23:0
- (knows UnitedStatesOfAmerica (or KOA KOB KOC KOD))
- .
- tell23:0
- (knows UnitedStatesOfAmerica (or KOA KOB KOC KOD))
- .pttp :-
- [ ('\n(knows UnitedStatesOfAmerica (or KOA KOB KOC KOD))\n':-true)].
- %
- '\n(knows UnitedStatesOfAmerica (or KOA KOB KOC KOD))\n' :-
- w_infer_by(tell23:0),
- [].
- %
- tell23:0
- (knows UnitedStatesOfAmerica (or KOA KOB KOC KOD))
- :-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ beliefs('UnitedStatesOfAmerica'),
- [or, [['BOA']], [[or, [['BOB']], [[or, [['BOC']], [['BOD']]]]]]]
- ].
- pkif :-
- [ implies,
- [poss(KB, [beliefs('UnitedStatesOfAmerica'), ['BOD']])],
- (=>),
- [ implies,
- [poss(KB, [beliefs('UnitedStatesOfAmerica'), ['BOC']])],
- (=>),
- [ implies,
- [poss(KB, [beliefs('UnitedStatesOfAmerica'), ['BOB']])],
- (=>),
- [ implies,
- [poss(KB, [beliefs('UnitedStatesOfAmerica'), ['BOA']])],
- (=>),
- [ beliefs('UnitedStatesOfAmerica'),
- [or, [['BOA']], [[or, [['BOB']], [[or, [['BOC']], [['BOD']]]]]]]
- ]
- ]
- ]
- ]
- ].
- cnf :-
- ( not(beliefs('UnitedStatesOfAmerica', 'BOD'))
- ; not(beliefs('UnitedStatesOfAmerica', 'BOC'))
- ; not(beliefs('UnitedStatesOfAmerica', 'BOB'))
- ; not(beliefs('UnitedStatesOfAmerica', 'BOA'))
- ; beliefs('UnitedStatesOfAmerica', ('BOA';'BOB';'BOC';'BOD'))
- ).
- %
- tell24:0 not_true_t(beliefs,UnitedStatesOfAmerica,BOD);not_true_t(beliefs,UnitedStatesOfAmerica,BOC);not_true_t(beliefs,UnitedStatesOfAmerica,BOB);not_true_t(beliefs,UnitedStatesOfAmerica,BOA);true_t(beliefs,UnitedStatesOfAmerica, (BOA;BOB;BOC;BOD)).pttp :-
- [ (not_true_t(beliefs, 'UnitedStatesOfAmerica', 'BOA'):-true_t(beliefs, 'UnitedStatesOfAmerica', 'BOD'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BOC'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BOB'), not_true_t(beliefs, 'UnitedStatesOfAmerica', ('BOA';'BOB';'BOC';'BOD'))),
- (not_true_t(beliefs, 'UnitedStatesOfAmerica', 'BOB'):-true_t(beliefs, 'UnitedStatesOfAmerica', 'BOD'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BOC'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BOA'), not_true_t(beliefs, 'UnitedStatesOfAmerica', ('BOA';'BOB';'BOC';'BOD'))),
- (not_true_t(beliefs, 'UnitedStatesOfAmerica', 'BOC'):-true_t(beliefs, 'UnitedStatesOfAmerica', 'BOD'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BOB'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BOA'), not_true_t(beliefs, 'UnitedStatesOfAmerica', ('BOA';'BOB';'BOC';'BOD'))),
- (not_true_t(beliefs, 'UnitedStatesOfAmerica', 'BOD'):-true_t(beliefs, 'UnitedStatesOfAmerica', 'BOC'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BOB'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BOA'), not_true_t(beliefs, 'UnitedStatesOfAmerica', ('BOA';'BOB';'BOC';'BOD'))),
- (true_t(beliefs, 'UnitedStatesOfAmerica', ('BOA';'BOB';'BOC';'BOD')):-true_t(beliefs, 'UnitedStatesOfAmerica', 'BOD'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BOC'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BOB'), true_t(beliefs, 'UnitedStatesOfAmerica', 'BOA'))
- ].
- %
- not_true_t(beliefs, 'UnitedStatesOfAmerica', 'BOA') :-
- w_infer_by(tell24:0),
- beliefs('UnitedStatesOfAmerica', 'BOD'),
- beliefs('UnitedStatesOfAmerica', 'BOC'),
- beliefs('UnitedStatesOfAmerica', 'BOB'),
- not(beliefs('UnitedStatesOfAmerica', ('BOA';'BOB';'BOC';'BOD'))).
- %
- tell24:0 not_true_t(beliefs,UnitedStatesOfAmerica,BOA):-true_t(beliefs,UnitedStatesOfAmerica,BOD),true_t(beliefs,UnitedStatesOfAmerica,BOC),true_t(beliefs,UnitedStatesOfAmerica,BOB),not_true_t(beliefs,UnitedStatesOfAmerica, (BOA;BOB;BOC;BOD)).not_true_t(beliefs,
- 'UnitedStatesOfAmerica',
- 'BOB') :-
- w_infer_by(tell24:1),
- beliefs('UnitedStatesOfAmerica', 'BOD'),
- beliefs('UnitedStatesOfAmerica', 'BOC'),
- beliefs('UnitedStatesOfAmerica', 'BOA'),
- not(beliefs('UnitedStatesOfAmerica', ('BOA';'BOB';'BOC';'BOD'))).
- %
- tell24:1 not_true_t(beliefs,UnitedStatesOfAmerica,BOB):-true_t(beliefs,UnitedStatesOfAmerica,BOD),true_t(beliefs,UnitedStatesOfAmerica,BOC),true_t(beliefs,UnitedStatesOfAmerica,BOA),not_true_t(beliefs,UnitedStatesOfAmerica, (BOA;BOB;BOC;BOD)).not_true_t(beliefs,
- 'UnitedStatesOfAmerica',
- 'BOC') :-
- w_infer_by(tell24:2),
- beliefs('UnitedStatesOfAmerica', 'BOD'),
- beliefs('UnitedStatesOfAmerica', 'BOB'),
- beliefs('UnitedStatesOfAmerica', 'BOA'),
- not(beliefs('UnitedStatesOfAmerica', ('BOA';'BOB';'BOC';'BOD'))).
- %
- tell24:2 not_true_t(beliefs,UnitedStatesOfAmerica,BOC):-true_t(beliefs,UnitedStatesOfAmerica,BOD),true_t(beliefs,UnitedStatesOfAmerica,BOB),true_t(beliefs,UnitedStatesOfAmerica,BOA),not_true_t(beliefs,UnitedStatesOfAmerica, (BOA;BOB;BOC;BOD)).not_true_t(beliefs,
- 'UnitedStatesOfAmerica',
- 'BOD') :-
- w_infer_by(tell24:3),
- beliefs('UnitedStatesOfAmerica', 'BOC'),
- beliefs('UnitedStatesOfAmerica', 'BOB'),
- beliefs('UnitedStatesOfAmerica', 'BOA'),
- not(beliefs('UnitedStatesOfAmerica', ('BOA';'BOB';'BOC';'BOD'))).
- %
- tell24:3 not_true_t(beliefs,UnitedStatesOfAmerica,BOD):-true_t(beliefs,UnitedStatesOfAmerica,BOC),true_t(beliefs,UnitedStatesOfAmerica,BOB),true_t(beliefs,UnitedStatesOfAmerica,BOA),not_true_t(beliefs,UnitedStatesOfAmerica, (BOA;BOB;BOC;BOD)).true_t(beliefs,
- 'UnitedStatesOfAmerica',
- ('BOA';'BOB';'BOC';'BOD')) :-
- w_infer_by(tell24:4),
- beliefs('UnitedStatesOfAmerica', 'BOD'),
- beliefs('UnitedStatesOfAmerica', 'BOC'),
- beliefs('UnitedStatesOfAmerica', 'BOB'),
- beliefs('UnitedStatesOfAmerica', 'BOA').
- %
- tell24:4 true_t(beliefs,UnitedStatesOfAmerica, (BOA;BOB;BOC;BOD)):-true_t(beliefs,UnitedStatesOfAmerica,BOD),true_t(beliefs,UnitedStatesOfAmerica,BOC),true_t(beliefs,UnitedStatesOfAmerica,BOB),true_t(beliefs,UnitedStatesOfAmerica,BOA).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- ['\n(beliefs UnitedStatesOfAmerica (or BOA BOB BOC BOD))\n'].
- pkif :-
- ['\n(beliefs UnitedStatesOfAmerica (or BOA BOB BOC BOD))\n'].
- cnf :-
- '\n(beliefs UnitedStatesOfAmerica (or BOA BOB BOC BOD))\n'.
- %
- tell25:0
- (beliefs UnitedStatesOfAmerica (or BOA BOB BOC BOD))
- .
- tell25:0
- (beliefs UnitedStatesOfAmerica (or BOA BOB BOC BOD))
- .pttp :-
- [ ('\n(beliefs UnitedStatesOfAmerica (or BOA BOB BOC BOD))\n':-true)].
- %
- '\n(beliefs UnitedStatesOfAmerica (or BOA BOB BOC BOD))\n' :-
- w_infer_by(tell25:0),
- [].
- %
- tell25:0
- (beliefs UnitedStatesOfAmerica (or BOA BOB BOC BOD))
- :-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ all[THEMAN],
- [ all[CRIME],
- [ all[WOMAN],
- [ all[RESPONSE],
- [ all[RETALIATION],
- [ implies,
- [ different(THEMAN, WOMAN),
- intendedMaleficiary(CRIME, THEMAN),
- deliberateActors(CRIME, WOMAN),
- behaviorCapable(THEMAN,
- 'CollectionSubsetFn'('Punishing',
- 'TheSetOf'(RESPONSE,
- maleficiary(RESPONSE,
- WOMAN))),
- deliberateActors)
- ],
- (=>),
- [ 'optionAvailableToAgent-SitType'(THEMAN,
- 'CollectionSubsetFn'('AttemptingFn'('Punishing'),
- 'TheSetOf'(RETALIATION,
- [ intendedMaleficiary(RETALIATION,
- WOMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- [ not,
- [ ex[ANOTRACT],
- [ isa(ANOTRACT,
- 'PurposefulAction'),
- startsAfterEndingOf(ANOTRACT,
- CRIME),
- maleficiary(ANOTRACT,
- THEMAN),
- deliberateActors(ANOTRACT,
- WOMAN)
- ]
- ]
- ])
- ])),
- deliberateActors)
- ]
- ]
- ]
- ]
- ]
- ]
- ].
- pkif :-
- [ implies,
- [ poss(KB,
- 'optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors))
- ],
- (=>),
- [ implies,
- [poss(KB, behaviorCapable(THEMAN, RESPONSE, deliberateActors))],
- (=>),
- [ implies,
- [poss(KB, deliberateActors(CRIME, WOMAN))],
- (=>),
- [ implies,
- [poss(KB, intendedMaleficiary(CRIME, THEMAN))],
- (=>),
- [ implies,
- [different(THEMAN, WOMAN)],
- (=>),
- [ implies,
- [ poss(KB,
- purposeInEvent(THEMAN,
- RETALIATION,
- [ not,
- [ ex[ANOTRACT],
- [ isa(ANOTRACT, 'PurposefulAction'),
- startsAfterEndingOf(ANOTRACT,
- CRIME),
- maleficiary(ANOTRACT, THEMAN),
- deliberateActors(ANOTRACT,
- WOMAN)
- ]
- ]
- ]))
- ],
- (=>),
- [ implies,
- [poss(KB, intendedMaleficiary(RETALIATION, WOMAN))],
- (=>),
- [ implies,
- [poss(KB, maleficiary(RESPONSE, WOMAN))],
- (=>),
- [ implies,
- [ isa(RESPONSE, 'Punishing'),
- maleficiary(RESPONSE, WOMAN)
- ],
- (=>),
- [ implies,
- [ isa(RETALIATION, 'AttemptingFn'('Punishing')),
- intendedMaleficiary(RETALIATION, WOMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- [ not,
- [ ex[ANOTRACT],
- [ isa(ANOTRACT,
- 'PurposefulAction'),
- startsAfterEndingOf(ANOTRACT,
- CRIME),
- maleficiary(ANOTRACT,
- THEMAN),
- deliberateActors(ANOTRACT,
- WOMAN)
- ]
- ]
- ])
- ],
- (=>),
- [ all[THEMAN],
- [ all[CRIME],
- [ all[WOMAN],
- [ all[RESPONSE],
- [ all[RETALIATION],
- [ implies,
- [ different(THEMAN, WOMAN),
- intendedMaleficiary(CRIME, THEMAN),
- deliberateActors(CRIME, WOMAN),
- behaviorCapable(THEMAN,
- RESPONSE,
- deliberateActors)
- ],
- (=>),
- [ 'optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ].
- cnf :-
- ( not(possible_t('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)))
- ; not(possible_t(behaviorCapable(THEMAN, RESPONSE, deliberateActors)))
- ; not(possible_t(deliberateActors(CRIME, WOMAN)))
- ; not(possible_t(intendedMaleficiary(CRIME, THEMAN)))
- ; not(different(THEMAN, WOMAN))
- ; not(purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))))
- ; not(possible_t(intendedMaleficiary(RETALIATION, WOMAN)))
- ; not(possible_t(maleficiary(RESPONSE, WOMAN)))
- ; not(isa(RESPONSE, 'Punishing'))
- ; not(maleficiary(RESPONSE, WOMAN))
- ; 'optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)
- ; not(intendedMaleficiary(CRIME, THEMAN))
- ; not(deliberateActors(CRIME, WOMAN))
- ; not(behaviorCapable(THEMAN, RESPONSE, deliberateActors))
- ; not(isa(RETALIATION, 'AttemptingFn'('Punishing')))
- ; not(intendedMaleficiary(RETALIATION, WOMAN))
- ).
- %
- % todo(warn(pttp_builtin(different, 2))).
- %
- tell26:0 not_possible_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors);not_possible_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors);not_possible_t(deliberateActors,CRIME,WOMAN);not_possible_t(intendedMaleficiary,CRIME,THEMAN);not_call_builtin(different,THEMAN,WOMAN);not_true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN)));not_possible_t(intendedMaleficiary,RETALIATION,WOMAN);not_possible_t(maleficiary,RESPONSE,WOMAN);not_isa(RESPONSE,Punishing);not_true_t(maleficiary,RESPONSE,WOMAN);true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors);not_true_t(intendedMaleficiary,CRIME,THEMAN);not_true_t(deliberateActors,CRIME,WOMAN);not_true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors);not_isa(RETALIATION,AttemptingFn(Punishing));not_true_t(intendedMaleficiary,RETALIATION,WOMAN).pttp :-
- [ (not_isa(RESPONSE, 'Punishing'):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_isa(RETALIATION, 'AttemptingFn'('Punishing')):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_call_builtin(different, THEMAN, WOMAN):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_possible_t(deliberateActors, CRIME, WOMAN):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_possible_t(intendedMaleficiary, CRIME, THEMAN):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_possible_t(intendedMaleficiary, RETALIATION, WOMAN):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_possible_t(maleficiary, RESPONSE, WOMAN):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_true_t(deliberateActors, CRIME, WOMAN):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_true_t(intendedMaleficiary, CRIME, THEMAN):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_true_t(intendedMaleficiary, RETALIATION, WOMAN):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing'))),
- (not_true_t(maleficiary, RESPONSE, WOMAN):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors):-possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN))
- ].
- %
- not_isa(RESPONSE, 'Punishing') :-
- w_infer_by(tell26:0),
- maleficiary(RESPONSE, WOMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- different(THEMAN, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- intendedMaleficiary(CRIME, THEMAN),
- deliberateActors(CRIME, WOMAN),
- intendedMaleficiary(RETALIATION, WOMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:0 not_isa(RESPONSE,Punishing):-true_t(maleficiary,RESPONSE,WOMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),isa(RETALIATION,AttemptingFn(Punishing)),call_builtin(different,THEMAN,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(deliberateActors,CRIME,WOMAN),true_t(intendedMaleficiary,RETALIATION,WOMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not(isa(RETALIATION, ATTEMPTINGFNPUNISHING1)):not(mudEquals(ATTEMPTINGFNPUNISHING1, 'AttemptingFn'('Punishing')), (different(THEMAN, WOMAN), purposeInEvent(THEMAN, RETALIATION, (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))), isa(RESPONSE, 'Punishing'), maleficiary(RESPONSE, WOMAN), not('optionAvailableToAgent-SitType'(THEMAN, RETALIATION, deliberateActors)), intendedMaleficiary(CRIME, THEMAN), deliberateActors(CRIME, WOMAN), behaviorCapable(THEMAN, RESPONSE, deliberateActors), intendedMaleficiary(RETALIATION, WOMAN))) :-
- w_infer_by(tell26:1).
- %
- tell26:1 true_t(:,not_isa(RETALIATION,ATTEMPTINGFNPUNISHING1),mudEquals(ATTEMPTINGFNPUNISHING1,AttemptingFn(Punishing))- (call_builtin(different,THEMAN,WOMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))),isa(RESPONSE,Punishing),true_t(maleficiary,RESPONSE,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(deliberateActors,CRIME,WOMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),true_t(intendedMaleficiary,RETALIATION,WOMAN))).
- tell26:1 true_t(:,not_isa(RETALIATION,ATTEMPTINGFNPUNISHING1),mudEquals(ATTEMPTINGFNPUNISHING1,AttemptingFn(Punishing))- (call_builtin(different,THEMAN,WOMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))),isa(RESPONSE,Punishing),true_t(maleficiary,RESPONSE,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(deliberateActors,CRIME,WOMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),true_t(intendedMaleficiary,RETALIATION,WOMAN))).not_call_builtin(different,
- THEMAN,
- WOMAN) :-
- w_infer_by(tell26:2),
- isa(RESPONSE, 'Punishing'),
- maleficiary(RESPONSE, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- intendedMaleficiary(CRIME, THEMAN),
- deliberateActors(CRIME, WOMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- intendedMaleficiary(RETALIATION, WOMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:2 not_call_builtin(different,THEMAN,WOMAN):-isa(RESPONSE,Punishing),true_t(maleficiary,RESPONSE,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(deliberateActors,CRIME,WOMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),isa(RETALIATION,AttemptingFn(Punishing)),true_t(intendedMaleficiary,RETALIATION,WOMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_possible_t(deliberateActors,
- CRIME,
- WOMAN) :-
- w_infer_by(tell26:3),
- deliberateActors(CRIME, WOMAN),
- different(THEMAN, WOMAN),
- isa(RESPONSE, 'Punishing'),
- maleficiary(RESPONSE, WOMAN),
- intendedMaleficiary(CRIME, THEMAN),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- intendedMaleficiary(RETALIATION, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:3 not_possible_t(deliberateActors,CRIME,WOMAN):-true_t(deliberateActors,CRIME,WOMAN),call_builtin(different,THEMAN,WOMAN),isa(RESPONSE,Punishing),true_t(maleficiary,RESPONSE,WOMAN),true_t(intendedMaleficiary,CRIME,THEMAN),isa(RETALIATION,AttemptingFn(Punishing)),true_t(intendedMaleficiary,RETALIATION,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_possible_t(intendedMaleficiary,
- CRIME,
- THEMAN) :-
- w_infer_by(tell26:4),
- intendedMaleficiary(CRIME, THEMAN),
- different(THEMAN, WOMAN),
- isa(RESPONSE, 'Punishing'),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- deliberateActors(CRIME, WOMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- maleficiary(RESPONSE, WOMAN),
- intendedMaleficiary(RETALIATION, WOMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:4 not_possible_t(intendedMaleficiary,CRIME,THEMAN):-true_t(intendedMaleficiary,CRIME,THEMAN),call_builtin(different,THEMAN,WOMAN),isa(RESPONSE,Punishing),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(deliberateActors,CRIME,WOMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),isa(RETALIATION,AttemptingFn(Punishing)),true_t(maleficiary,RESPONSE,WOMAN),true_t(intendedMaleficiary,RETALIATION,WOMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_possible_t(intendedMaleficiary,
- RETALIATION,
- WOMAN) :-
- w_infer_by(tell26:5),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- intendedMaleficiary(RETALIATION, WOMAN),
- different(THEMAN, WOMAN),
- isa(RESPONSE, 'Punishing'),
- maleficiary(RESPONSE, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- deliberateActors(CRIME, WOMAN),
- intendedMaleficiary(CRIME, THEMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:5 not_possible_t(intendedMaleficiary,RETALIATION,WOMAN):-isa(RETALIATION,AttemptingFn(Punishing)),true_t(intendedMaleficiary,RETALIATION,WOMAN),call_builtin(different,THEMAN,WOMAN),isa(RESPONSE,Punishing),true_t(maleficiary,RESPONSE,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(deliberateActors,CRIME,WOMAN),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_possible_t(maleficiary,
- RESPONSE,
- WOMAN) :-
- w_infer_by(tell26:6),
- isa(RESPONSE, 'Punishing'),
- maleficiary(RESPONSE, WOMAN),
- different(THEMAN, WOMAN),
- deliberateActors(CRIME, WOMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- intendedMaleficiary(RETALIATION, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- intendedMaleficiary(CRIME, THEMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:6 not_possible_t(maleficiary,RESPONSE,WOMAN):-isa(RESPONSE,Punishing),true_t(maleficiary,RESPONSE,WOMAN),call_builtin(different,THEMAN,WOMAN),true_t(deliberateActors,CRIME,WOMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),isa(RETALIATION,AttemptingFn(Punishing)),true_t(intendedMaleficiary,RETALIATION,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_true_t(deliberateActors,
- CRIME,
- WOMAN) :-
- w_infer_by(tell26:7),
- poss(deliberateActors(CRIME, WOMAN)),
- different(THEMAN, WOMAN),
- isa(RESPONSE, 'Punishing'),
- maleficiary(RESPONSE, WOMAN),
- intendedMaleficiary(CRIME, THEMAN),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- intendedMaleficiary(RETALIATION, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:7 not_true_t(deliberateActors,CRIME,WOMAN):-possible_t(deliberateActors,CRIME,WOMAN),call_builtin(different,THEMAN,WOMAN),isa(RESPONSE,Punishing),true_t(maleficiary,RESPONSE,WOMAN),true_t(intendedMaleficiary,CRIME,THEMAN),isa(RETALIATION,AttemptingFn(Punishing)),true_t(intendedMaleficiary,RETALIATION,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_true_t(intendedMaleficiary,
- CRIME,
- THEMAN) :-
- w_infer_by(tell26:8),
- poss(intendedMaleficiary(CRIME, THEMAN)),
- different(THEMAN, WOMAN),
- isa(RESPONSE, 'Punishing'),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- deliberateActors(CRIME, WOMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- maleficiary(RESPONSE, WOMAN),
- intendedMaleficiary(RETALIATION, WOMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:8 not_true_t(intendedMaleficiary,CRIME,THEMAN):-possible_t(intendedMaleficiary,CRIME,THEMAN),call_builtin(different,THEMAN,WOMAN),isa(RESPONSE,Punishing),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(deliberateActors,CRIME,WOMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),isa(RETALIATION,AttemptingFn(Punishing)),true_t(maleficiary,RESPONSE,WOMAN),true_t(intendedMaleficiary,RETALIATION,WOMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_true_t(intendedMaleficiary,
- RETALIATION,
- WOMAN) :-
- w_infer_by(tell26:9),
- poss(intendedMaleficiary(RETALIATION, WOMAN)),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- different(THEMAN, WOMAN),
- isa(RESPONSE, 'Punishing'),
- maleficiary(RESPONSE, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- deliberateActors(CRIME, WOMAN),
- intendedMaleficiary(CRIME, THEMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:9 not_true_t(intendedMaleficiary,RETALIATION,WOMAN):-possible_t(intendedMaleficiary,RETALIATION,WOMAN),isa(RETALIATION,AttemptingFn(Punishing)),call_builtin(different,THEMAN,WOMAN),isa(RESPONSE,Punishing),true_t(maleficiary,RESPONSE,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(deliberateActors,CRIME,WOMAN),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_true_t(maleficiary,
- RESPONSE,
- WOMAN) :-
- w_infer_by(tell26:10),
- poss(maleficiary(RESPONSE, WOMAN)),
- isa(RESPONSE, 'Punishing'),
- different(THEMAN, WOMAN),
- deliberateActors(CRIME, WOMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- intendedMaleficiary(RETALIATION, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- intendedMaleficiary(CRIME, THEMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:10 not_true_t(maleficiary,RESPONSE,WOMAN):-possible_t(maleficiary,RESPONSE,WOMAN),isa(RESPONSE,Punishing),call_builtin(different,THEMAN,WOMAN),true_t(deliberateActors,CRIME,WOMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),isa(RETALIATION,AttemptingFn(Punishing)),true_t(intendedMaleficiary,RETALIATION,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_possible_t(behaviorCapable,
- THEMAN,
- RESPONSE,
- deliberateActors) :-
- w_infer_by(tell26:11),
- isa(RESPONSE, 'Punishing'),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- different(THEMAN, WOMAN),
- maleficiary(RESPONSE, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- intendedMaleficiary(CRIME, THEMAN),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- deliberateActors(CRIME, WOMAN),
- intendedMaleficiary(RETALIATION, WOMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:11 not_possible_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors):-isa(RESPONSE,Punishing),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),call_builtin(different,THEMAN,WOMAN),true_t(maleficiary,RESPONSE,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(intendedMaleficiary,CRIME,THEMAN),isa(RETALIATION,AttemptingFn(Punishing)),true_t(deliberateActors,CRIME,WOMAN),true_t(intendedMaleficiary,RETALIATION,WOMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_possible_t('optionAvailableToAgent-SitType',
- THEMAN,
- RETALIATION,
- deliberateActors) :-
- w_infer_by(tell26:12),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- different(THEMAN, WOMAN),
- isa(RESPONSE, 'Punishing'),
- intendedMaleficiary(CRIME, THEMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- intendedMaleficiary(RETALIATION, WOMAN),
- maleficiary(RESPONSE, WOMAN),
- deliberateActors(CRIME, WOMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:12 not_possible_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors):-not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),isa(RETALIATION,AttemptingFn(Punishing)),call_builtin(different,THEMAN,WOMAN),isa(RESPONSE,Punishing),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),true_t(intendedMaleficiary,RETALIATION,WOMAN),true_t(maleficiary,RESPONSE,WOMAN),true_t(deliberateActors,CRIME,WOMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_true_t(behaviorCapable,
- THEMAN,
- RESPONSE,
- deliberateActors) :-
- w_infer_by(tell26:13),
- poss(behaviorCapable(THEMAN, RESPONSE, deliberateActors)),
- isa(RESPONSE, 'Punishing'),
- different(THEMAN, WOMAN),
- maleficiary(RESPONSE, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- intendedMaleficiary(CRIME, THEMAN),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- deliberateActors(CRIME, WOMAN),
- intendedMaleficiary(RETALIATION, WOMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:13 not_true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors):-possible_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),isa(RESPONSE,Punishing),call_builtin(different,THEMAN,WOMAN),true_t(maleficiary,RESPONSE,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(intendedMaleficiary,CRIME,THEMAN),isa(RETALIATION,AttemptingFn(Punishing)),true_t(deliberateActors,CRIME,WOMAN),true_t(intendedMaleficiary,RETALIATION,WOMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_true_t(purposeInEvent,
- THEMAN,
- RETALIATION,
- (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))) :-
- w_infer_by(tell26:14),
- different(THEMAN, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- intendedMaleficiary(CRIME, THEMAN),
- deliberateActors(CRIME, WOMAN),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- intendedMaleficiary(RETALIATION, WOMAN),
- isa(RESPONSE, 'Punishing'),
- maleficiary(RESPONSE, WOMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors).
- %
- tell26:14 not_true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))):-call_builtin(different,THEMAN,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(deliberateActors,CRIME,WOMAN),isa(RETALIATION,AttemptingFn(Punishing)),true_t(intendedMaleficiary,RETALIATION,WOMAN),isa(RESPONSE,Punishing),true_t(maleficiary,RESPONSE,WOMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors).true_t('optionAvailableToAgent-SitType',
- THEMAN,
- RETALIATION,
- deliberateActors) :-
- w_infer_by(tell26:15),
- poss('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- different(THEMAN, WOMAN),
- isa(RESPONSE, 'Punishing'),
- intendedMaleficiary(CRIME, THEMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- intendedMaleficiary(RETALIATION, WOMAN),
- maleficiary(RESPONSE, WOMAN),
- deliberateActors(CRIME, WOMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:15 true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors):-possible_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),isa(RETALIATION,AttemptingFn(Punishing)),call_builtin(different,THEMAN,WOMAN),isa(RESPONSE,Punishing),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),true_t(intendedMaleficiary,RETALIATION,WOMAN),true_t(maleficiary,RESPONSE,WOMAN),true_t(deliberateActors,CRIME,WOMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ '\n(implies \n (and \n (different ?THEMAN ?WOMAN) \n (intendedMaleficiary ?CRIME ?THEMAN) \n (deliberateActors ?CRIME ?WOMAN) \n (behaviorCapable ?THEMAN \n (CollectionSubsetFn Punishing \n (TheSetOf ?RESPONSE \n (maleficiary ?RESPONSE ?WOMAN))) deliberateActors)) \n\n (optionAvailableToAgent-SitType ?THEMAN \n (CollectionSubsetFn \n (AttemptingFn Punishing) \n (TheSetOf ?RETALIATION \n (and \n (intendedMaleficiary ?RETALIATION ?WOMAN) \n (purposeInEvent ?THEMAN ?RETALIATION \n (not \n (thereExists ?ANOTRACT \n (and \n (isa ?ANOTRACT PurposefulAction) \n (startsAfterEndingOf ?ANOTRACT ?CRIME) \n (maleficiary ?ANOTRACT ?THEMAN) \n (deliberateActors ?ANOTRACT ?WOMAN)))))))) deliberateActors))'
- ].
- pkif :-
- [ '\n(implies \n (and \n (different ?THEMAN ?WOMAN) \n (intendedMaleficiary ?CRIME ?THEMAN) \n (deliberateActors ?CRIME ?WOMAN) \n (behaviorCapable ?THEMAN \n (CollectionSubsetFn Punishing \n (TheSetOf ?RESPONSE \n (maleficiary ?RESPONSE ?WOMAN))) deliberateActors)) \n\n (optionAvailableToAgent-SitType ?THEMAN \n (CollectionSubsetFn \n (AttemptingFn Punishing) \n (TheSetOf ?RETALIATION \n (and \n (intendedMaleficiary ?RETALIATION ?WOMAN) \n (purposeInEvent ?THEMAN ?RETALIATION \n (not \n (thereExists ?ANOTRACT \n (and \n (isa ?ANOTRACT PurposefulAction) \n (startsAfterEndingOf ?ANOTRACT ?CRIME) \n (maleficiary ?ANOTRACT ?THEMAN) \n (deliberateActors ?ANOTRACT ?WOMAN)))))))) deliberateActors))'
- ].
- cnf :-
- '\n(implies \n (and \n (different ?THEMAN ?WOMAN) \n (intendedMaleficiary ?CRIME ?THEMAN) \n (deliberateActors ?CRIME ?WOMAN) \n (behaviorCapable ?THEMAN \n (CollectionSubsetFn Punishing \n (TheSetOf ?RESPONSE \n (maleficiary ?RESPONSE ?WOMAN))) deliberateActors)) \n\n (optionAvailableToAgent-SitType ?THEMAN \n (CollectionSubsetFn \n (AttemptingFn Punishing) \n (TheSetOf ?RETALIATION \n (and \n (intendedMaleficiary ?RETALIATION ?WOMAN) \n (purposeInEvent ?THEMAN ?RETALIATION \n (not \n (thereExists ?ANOTRACT \n (and \n (isa ?ANOTRACT PurposefulAction) \n (startsAfterEndingOf ?ANOTRACT ?CRIME) \n (maleficiary ?ANOTRACT ?THEMAN) \n (deliberateActors ?ANOTRACT ?WOMAN)))))))) deliberateActors))'.
- %
- tell27:0
- (implies
- (and
- (different ?THEMAN ?WOMAN)
- (intendedMaleficiary ?CRIME ?THEMAN)
- (deliberateActors ?CRIME ?WOMAN)
- (behaviorCapable ?THEMAN
- (CollectionSubsetFn Punishing
- (TheSetOf ?RESPONSE
- (maleficiary ?RESPONSE ?WOMAN))) deliberateActors))
- (optionAvailableToAgent-SitType ?THEMAN
- (CollectionSubsetFn
- (AttemptingFn Punishing)
- (TheSetOf ?RETALIATION
- (and
- (intendedMaleficiary ?RETALIATION ?WOMAN)
- (purposeInEvent ?THEMAN ?RETALIATION
- (not
- (thereExists ?ANOTRACT
- (and
- (isa ?ANOTRACT PurposefulAction)
- (startsAfterEndingOf ?ANOTRACT ?CRIME)
- (maleficiary ?ANOTRACT ?THEMAN)
- (deliberateActors ?ANOTRACT ?WOMAN)))))))) deliberateActors)).
- tell27:0
- (implies
- (and
- (different ?THEMAN ?WOMAN)
- (intendedMaleficiary ?CRIME ?THEMAN)
- (deliberateActors ?CRIME ?WOMAN)
- (behaviorCapable ?THEMAN
- (CollectionSubsetFn Punishing
- (TheSetOf ?RESPONSE
- (maleficiary ?RESPONSE ?WOMAN))) deliberateActors))
- (optionAvailableToAgent-SitType ?THEMAN
- (CollectionSubsetFn
- (AttemptingFn Punishing)
- (TheSetOf ?RETALIATION
- (and
- (intendedMaleficiary ?RETALIATION ?WOMAN)
- (purposeInEvent ?THEMAN ?RETALIATION
- (not
- (thereExists ?ANOTRACT
- (and
- (isa ?ANOTRACT PurposefulAction)
- (startsAfterEndingOf ?ANOTRACT ?CRIME)
- (maleficiary ?ANOTRACT ?THEMAN)
- (deliberateActors ?ANOTRACT ?WOMAN)))))))) deliberateActors)).pttp :-
- [ ('\n(implies \n (and \n (different ?THEMAN ?WOMAN) \n (intendedMaleficiary ?CRIME ?THEMAN) \n (deliberateActors ?CRIME ?WOMAN) \n (behaviorCapable ?THEMAN \n (CollectionSubsetFn Punishing \n (TheSetOf ?RESPONSE \n (maleficiary ?RESPONSE ?WOMAN))) deliberateActors)) \n\n (optionAvailableToAgent-SitType ?THEMAN \n (CollectionSubsetFn \n (AttemptingFn Punishing) \n (TheSetOf ?RETALIATION \n (and \n (intendedMaleficiary ?RETALIATION ?WOMAN) \n (purposeInEvent ?THEMAN ?RETALIATION \n (not \n (thereExists ?ANOTRACT \n (and \n (isa ?ANOTRACT PurposefulAction) \n (startsAfterEndingOf ?ANOTRACT ?CRIME) \n (maleficiary ?ANOTRACT ?THEMAN) \n (deliberateActors ?ANOTRACT ?WOMAN)))))))) deliberateActors))':-true)
- ].
- %
- '\n(implies \n (and \n (different ?THEMAN ?WOMAN) \n (intendedMaleficiary ?CRIME ?THEMAN) \n (deliberateActors ?CRIME ?WOMAN) \n (behaviorCapable ?THEMAN \n (CollectionSubsetFn Punishing \n (TheSetOf ?RESPONSE \n (maleficiary ?RESPONSE ?WOMAN))) deliberateActors)) \n\n (optionAvailableToAgent-SitType ?THEMAN \n (CollectionSubsetFn \n (AttemptingFn Punishing) \n (TheSetOf ?RETALIATION \n (and \n (intendedMaleficiary ?RETALIATION ?WOMAN) \n (purposeInEvent ?THEMAN ?RETALIATION \n (not \n (thereExists ?ANOTRACT \n (and \n (isa ?ANOTRACT PurposefulAction) \n (startsAfterEndingOf ?ANOTRACT ?CRIME) \n (maleficiary ?ANOTRACT ?THEMAN) \n (deliberateActors ?ANOTRACT ?WOMAN)))))))) deliberateActors))' :-
- w_infer_by(tell27:0),
- [].
- %
- tell27:0
- (implies
- (and
- (different ?THEMAN ?WOMAN)
- (intendedMaleficiary ?CRIME ?THEMAN)
- (deliberateActors ?CRIME ?WOMAN)
- (behaviorCapable ?THEMAN
- (CollectionSubsetFn Punishing
- (TheSetOf ?RESPONSE
- (maleficiary ?RESPONSE ?WOMAN))) deliberateActors))
- (optionAvailableToAgent-SitType ?THEMAN
- (CollectionSubsetFn
- (AttemptingFn Punishing)
- (TheSetOf ?RETALIATION
- (and
- (intendedMaleficiary ?RETALIATION ?WOMAN)
- (purposeInEvent ?THEMAN ?RETALIATION
- (not
- (thereExists ?ANOTRACT
- (and
- (isa ?ANOTRACT PurposefulAction)
- (startsAfterEndingOf ?ANOTRACT ?CRIME)
- (maleficiary ?ANOTRACT ?THEMAN)
- (deliberateActors ?ANOTRACT ?WOMAN)))))))) deliberateActors)):-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ all[AGREEMENT],
- [ all[OBLIGATION],
- [ all[WOMAN],
- [ implies,
- [ isa(AGREEMENT, 'Agreement'),
- intangibleParts(AGREEMENT, OBLIGATION),
- isa(OBLIGATION, 'Obligation'),
- agreeingAgents(AGREEMENT, WOMAN),
- agentViolatesObligation(WOMAN, OBLIGATION)
- ],
- (=>),
- [agentViolatesAgreement(WOMAN, AGREEMENT)]
- ]
- ]
- ]
- ].
- pkif :-
- [ implies,
- [poss(KB, agentViolatesAgreement(WOMAN, AGREEMENT))],
- (=>),
- [ implies,
- [poss(KB, agentViolatesObligation(WOMAN, OBLIGATION))],
- (=>),
- [ implies,
- [poss(KB, agreeingAgents(AGREEMENT, WOMAN))],
- (=>),
- [ implies,
- [poss(KB, intangibleParts(AGREEMENT, OBLIGATION))],
- (=>),
- [ all[AGREEMENT],
- [ all[OBLIGATION],
- [ all[WOMAN],
- [ implies,
- [ isa(AGREEMENT, 'Agreement'),
- intangibleParts(AGREEMENT, OBLIGATION),
- isa(OBLIGATION, 'Obligation'),
- agreeingAgents(AGREEMENT, WOMAN),
- agentViolatesObligation(WOMAN, OBLIGATION)
- ],
- (=>),
- [agentViolatesAgreement(WOMAN, AGREEMENT)]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ].
- cnf :-
- ( not(possible_t(agentViolatesAgreement(WOMAN, AGREEMENT)))
- ; not(possible_t(agentViolatesObligation(WOMAN, OBLIGATION)))
- ; not(possible_t(agreeingAgents(AGREEMENT, WOMAN)))
- ; not(possible_t(intangibleParts(AGREEMENT, OBLIGATION)))
- ; agentViolatesAgreement(WOMAN, AGREEMENT)
- ; not(isa(AGREEMENT, 'Agreement'))
- ; not(intangibleParts(AGREEMENT, OBLIGATION))
- ; not(isa(OBLIGATION, 'Obligation'))
- ; not(agreeingAgents(AGREEMENT, WOMAN))
- ; not(agentViolatesObligation(WOMAN, OBLIGATION))
- ).
- %
- tell28:0 not_possible_t(agentViolatesAgreement,WOMAN,AGREEMENT);not_possible_t(agentViolatesObligation,WOMAN,OBLIGATION);not_possible_t(agreeingAgents,AGREEMENT,WOMAN);not_possible_t(intangibleParts,AGREEMENT,OBLIGATION);true_t(agentViolatesAgreement,WOMAN,AGREEMENT);not_isa(AGREEMENT,Agreement);not_true_t(intangibleParts,AGREEMENT,OBLIGATION);not_isa(OBLIGATION,Obligation);not_true_t(agreeingAgents,AGREEMENT,WOMAN);not_true_t(agentViolatesObligation,WOMAN,OBLIGATION).pttp :-
- [ (not_isa(AGREEMENT, 'Agreement'):-possible_t(agentViolatesAgreement, WOMAN, AGREEMENT), possible_t(agentViolatesObligation, WOMAN, OBLIGATION), possible_t(agreeingAgents, AGREEMENT, WOMAN), possible_t(intangibleParts, AGREEMENT, OBLIGATION), not_true_t(agentViolatesAgreement, WOMAN, AGREEMENT), true_t(intangibleParts, AGREEMENT, OBLIGATION), isa(OBLIGATION, 'Obligation'), true_t(agreeingAgents, AGREEMENT, WOMAN), true_t(agentViolatesObligation, WOMAN, OBLIGATION)),
- (not_isa(OBLIGATION, 'Obligation'):-possible_t(agentViolatesAgreement, WOMAN, AGREEMENT), possible_t(agentViolatesObligation, WOMAN, OBLIGATION), possible_t(agreeingAgents, AGREEMENT, WOMAN), possible_t(intangibleParts, AGREEMENT, OBLIGATION), not_true_t(agentViolatesAgreement, WOMAN, AGREEMENT), isa(AGREEMENT, 'Agreement'), true_t(intangibleParts, AGREEMENT, OBLIGATION), true_t(agreeingAgents, AGREEMENT, WOMAN), true_t(agentViolatesObligation, WOMAN, OBLIGATION)),
- (not_possible_t(agentViolatesAgreement, WOMAN, AGREEMENT):-possible_t(agentViolatesObligation, WOMAN, OBLIGATION), possible_t(agreeingAgents, AGREEMENT, WOMAN), possible_t(intangibleParts, AGREEMENT, OBLIGATION), not_true_t(agentViolatesAgreement, WOMAN, AGREEMENT), isa(AGREEMENT, 'Agreement'), true_t(intangibleParts, AGREEMENT, OBLIGATION), isa(OBLIGATION, 'Obligation'), true_t(agreeingAgents, AGREEMENT, WOMAN), true_t(agentViolatesObligation, WOMAN, OBLIGATION)),
- (not_possible_t(agentViolatesObligation, WOMAN, OBLIGATION):-possible_t(agentViolatesAgreement, WOMAN, AGREEMENT), possible_t(agreeingAgents, AGREEMENT, WOMAN), possible_t(intangibleParts, AGREEMENT, OBLIGATION), not_true_t(agentViolatesAgreement, WOMAN, AGREEMENT), isa(AGREEMENT, 'Agreement'), true_t(intangibleParts, AGREEMENT, OBLIGATION), isa(OBLIGATION, 'Obligation'), true_t(agreeingAgents, AGREEMENT, WOMAN), true_t(agentViolatesObligation, WOMAN, OBLIGATION)),
- (not_possible_t(agreeingAgents, AGREEMENT, WOMAN):-possible_t(agentViolatesAgreement, WOMAN, AGREEMENT), possible_t(agentViolatesObligation, WOMAN, OBLIGATION), possible_t(intangibleParts, AGREEMENT, OBLIGATION), not_true_t(agentViolatesAgreement, WOMAN, AGREEMENT), isa(AGREEMENT, 'Agreement'), true_t(intangibleParts, AGREEMENT, OBLIGATION), isa(OBLIGATION, 'Obligation'), true_t(agreeingAgents, AGREEMENT, WOMAN), true_t(agentViolatesObligation, WOMAN, OBLIGATION)),
- (not_possible_t(intangibleParts, AGREEMENT, OBLIGATION):-possible_t(agentViolatesAgreement, WOMAN, AGREEMENT), possible_t(agentViolatesObligation, WOMAN, OBLIGATION), possible_t(agreeingAgents, AGREEMENT, WOMAN), not_true_t(agentViolatesAgreement, WOMAN, AGREEMENT), isa(AGREEMENT, 'Agreement'), true_t(intangibleParts, AGREEMENT, OBLIGATION), isa(OBLIGATION, 'Obligation'), true_t(agreeingAgents, AGREEMENT, WOMAN), true_t(agentViolatesObligation, WOMAN, OBLIGATION)),
- (not_true_t(agentViolatesObligation, WOMAN, OBLIGATION):-possible_t(agentViolatesAgreement, WOMAN, AGREEMENT), possible_t(agentViolatesObligation, WOMAN, OBLIGATION), possible_t(agreeingAgents, AGREEMENT, WOMAN), possible_t(intangibleParts, AGREEMENT, OBLIGATION), not_true_t(agentViolatesAgreement, WOMAN, AGREEMENT), isa(AGREEMENT, 'Agreement'), true_t(intangibleParts, AGREEMENT, OBLIGATION), isa(OBLIGATION, 'Obligation'), true_t(agreeingAgents, AGREEMENT, WOMAN)),
- (not_true_t(agreeingAgents, AGREEMENT, WOMAN):-possible_t(agentViolatesAgreement, WOMAN, AGREEMENT), possible_t(agentViolatesObligation, WOMAN, OBLIGATION), possible_t(agreeingAgents, AGREEMENT, WOMAN), possible_t(intangibleParts, AGREEMENT, OBLIGATION), not_true_t(agentViolatesAgreement, WOMAN, AGREEMENT), isa(AGREEMENT, 'Agreement'), true_t(intangibleParts, AGREEMENT, OBLIGATION), isa(OBLIGATION, 'Obligation'), true_t(agentViolatesObligation, WOMAN, OBLIGATION)),
- (not_true_t(intangibleParts, AGREEMENT, OBLIGATION):-possible_t(agentViolatesAgreement, WOMAN, AGREEMENT), possible_t(agentViolatesObligation, WOMAN, OBLIGATION), possible_t(agreeingAgents, AGREEMENT, WOMAN), possible_t(intangibleParts, AGREEMENT, OBLIGATION), not_true_t(agentViolatesAgreement, WOMAN, AGREEMENT), isa(AGREEMENT, 'Agreement'), isa(OBLIGATION, 'Obligation'), true_t(agreeingAgents, AGREEMENT, WOMAN), true_t(agentViolatesObligation, WOMAN, OBLIGATION)),
- (true_t(agentViolatesAgreement, WOMAN, AGREEMENT):-possible_t(agentViolatesAgreement, WOMAN, AGREEMENT), possible_t(agentViolatesObligation, WOMAN, OBLIGATION), possible_t(agreeingAgents, AGREEMENT, WOMAN), possible_t(intangibleParts, AGREEMENT, OBLIGATION), isa(AGREEMENT, 'Agreement'), true_t(intangibleParts, AGREEMENT, OBLIGATION), isa(OBLIGATION, 'Obligation'), true_t(agreeingAgents, AGREEMENT, WOMAN), true_t(agentViolatesObligation, WOMAN, OBLIGATION))
- ].
- %
- not_isa(AGREEMENT, 'Agreement') :-
- w_infer_by(tell28:0),
- not(agentViolatesAgreement(WOMAN, AGREEMENT)),
- intangibleParts(AGREEMENT, OBLIGATION),
- isa(OBLIGATION, 'Obligation'),
- agreeingAgents(AGREEMENT, WOMAN),
- agentViolatesObligation(WOMAN, OBLIGATION).
- %
- tell28:0 not_isa(AGREEMENT,Agreement):-not_true_t(agentViolatesAgreement,WOMAN,AGREEMENT),true_t(intangibleParts,AGREEMENT,OBLIGATION),isa(OBLIGATION,Obligation),true_t(agreeingAgents,AGREEMENT,WOMAN),true_t(agentViolatesObligation,WOMAN,OBLIGATION).not_isa(OBLIGATION,
- 'Obligation') :-
- w_infer_by(tell28:1),
- isa(AGREEMENT, 'Agreement'),
- intangibleParts(AGREEMENT, OBLIGATION),
- agentViolatesObligation(WOMAN, OBLIGATION),
- not(agentViolatesAgreement(WOMAN, AGREEMENT)),
- agreeingAgents(AGREEMENT, WOMAN).
- %
- tell28:1 not_isa(OBLIGATION,Obligation):-isa(AGREEMENT,Agreement),true_t(intangibleParts,AGREEMENT,OBLIGATION),true_t(agentViolatesObligation,WOMAN,OBLIGATION),not_true_t(agentViolatesAgreement,WOMAN,AGREEMENT),true_t(agreeingAgents,AGREEMENT,WOMAN).not_possible_t(agentViolatesAgreement,
- WOMAN,
- AGREEMENT) :-
- w_infer_by(tell28:2),
- not(agentViolatesAgreement(WOMAN, AGREEMENT)),
- isa(AGREEMENT, 'Agreement'),
- agreeingAgents(AGREEMENT, WOMAN),
- intangibleParts(AGREEMENT, OBLIGATION),
- isa(OBLIGATION, 'Obligation'),
- agentViolatesObligation(WOMAN, OBLIGATION).
- %
- tell28:2 not_possible_t(agentViolatesAgreement,WOMAN,AGREEMENT):-not_true_t(agentViolatesAgreement,WOMAN,AGREEMENT),isa(AGREEMENT,Agreement),true_t(agreeingAgents,AGREEMENT,WOMAN),true_t(intangibleParts,AGREEMENT,OBLIGATION),isa(OBLIGATION,Obligation),true_t(agentViolatesObligation,WOMAN,OBLIGATION).not_possible_t(agentViolatesObligation,
- WOMAN,
- OBLIGATION) :-
- w_infer_by(tell28:3),
- isa(OBLIGATION, 'Obligation'),
- agentViolatesObligation(WOMAN, OBLIGATION),
- not(agentViolatesAgreement(WOMAN, AGREEMENT)),
- isa(AGREEMENT, 'Agreement'),
- intangibleParts(AGREEMENT, OBLIGATION),
- agreeingAgents(AGREEMENT, WOMAN).
- %
- tell28:3 not_possible_t(agentViolatesObligation,WOMAN,OBLIGATION):-isa(OBLIGATION,Obligation),true_t(agentViolatesObligation,WOMAN,OBLIGATION),not_true_t(agentViolatesAgreement,WOMAN,AGREEMENT),isa(AGREEMENT,Agreement),true_t(intangibleParts,AGREEMENT,OBLIGATION),true_t(agreeingAgents,AGREEMENT,WOMAN).not_possible_t(agreeingAgents,
- AGREEMENT,
- WOMAN) :-
- w_infer_by(tell28:4),
- not(agentViolatesAgreement(WOMAN, AGREEMENT)),
- isa(AGREEMENT, 'Agreement'),
- agreeingAgents(AGREEMENT, WOMAN),
- intangibleParts(AGREEMENT, OBLIGATION),
- isa(OBLIGATION, 'Obligation'),
- agentViolatesObligation(WOMAN, OBLIGATION).
- %
- tell28:4 not_possible_t(agreeingAgents,AGREEMENT,WOMAN):-not_true_t(agentViolatesAgreement,WOMAN,AGREEMENT),isa(AGREEMENT,Agreement),true_t(agreeingAgents,AGREEMENT,WOMAN),true_t(intangibleParts,AGREEMENT,OBLIGATION),isa(OBLIGATION,Obligation),true_t(agentViolatesObligation,WOMAN,OBLIGATION).not_possible_t(intangibleParts,
- AGREEMENT,
- OBLIGATION) :-
- w_infer_by(tell28:5),
- isa(AGREEMENT, 'Agreement'),
- intangibleParts(AGREEMENT, OBLIGATION),
- isa(OBLIGATION, 'Obligation'),
- not(agentViolatesAgreement(WOMAN, AGREEMENT)),
- agreeingAgents(AGREEMENT, WOMAN),
- agentViolatesObligation(WOMAN, OBLIGATION).
- %
- tell28:5 not_possible_t(intangibleParts,AGREEMENT,OBLIGATION):-isa(AGREEMENT,Agreement),true_t(intangibleParts,AGREEMENT,OBLIGATION),isa(OBLIGATION,Obligation),not_true_t(agentViolatesAgreement,WOMAN,AGREEMENT),true_t(agreeingAgents,AGREEMENT,WOMAN),true_t(agentViolatesObligation,WOMAN,OBLIGATION).not_true_t(agentViolatesObligation,
- WOMAN,
- OBLIGATION) :-
- w_infer_by(tell28:6),
- poss(agentViolatesObligation(WOMAN, OBLIGATION)),
- isa(OBLIGATION, 'Obligation'),
- not(agentViolatesAgreement(WOMAN, AGREEMENT)),
- isa(AGREEMENT, 'Agreement'),
- intangibleParts(AGREEMENT, OBLIGATION),
- agreeingAgents(AGREEMENT, WOMAN).
- %
- tell28:6 not_true_t(agentViolatesObligation,WOMAN,OBLIGATION):-possible_t(agentViolatesObligation,WOMAN,OBLIGATION),isa(OBLIGATION,Obligation),not_true_t(agentViolatesAgreement,WOMAN,AGREEMENT),isa(AGREEMENT,Agreement),true_t(intangibleParts,AGREEMENT,OBLIGATION),true_t(agreeingAgents,AGREEMENT,WOMAN).not_true_t(agreeingAgents,
- AGREEMENT,
- WOMAN) :-
- w_infer_by(tell28:7),
- poss(agreeingAgents(AGREEMENT, WOMAN)),
- not(agentViolatesAgreement(WOMAN, AGREEMENT)),
- isa(AGREEMENT, 'Agreement'),
- intangibleParts(AGREEMENT, OBLIGATION),
- isa(OBLIGATION, 'Obligation'),
- agentViolatesObligation(WOMAN, OBLIGATION).
- %
- tell28:7 not_true_t(agreeingAgents,AGREEMENT,WOMAN):-possible_t(agreeingAgents,AGREEMENT,WOMAN),not_true_t(agentViolatesAgreement,WOMAN,AGREEMENT),isa(AGREEMENT,Agreement),true_t(intangibleParts,AGREEMENT,OBLIGATION),isa(OBLIGATION,Obligation),true_t(agentViolatesObligation,WOMAN,OBLIGATION).not_true_t(intangibleParts,
- AGREEMENT,
- OBLIGATION) :-
- w_infer_by(tell28:8),
- poss(intangibleParts(AGREEMENT, OBLIGATION)),
- isa(AGREEMENT, 'Agreement'),
- isa(OBLIGATION, 'Obligation'),
- not(agentViolatesAgreement(WOMAN, AGREEMENT)),
- agreeingAgents(AGREEMENT, WOMAN),
- agentViolatesObligation(WOMAN, OBLIGATION).
- %
- tell28:8 not_true_t(intangibleParts,AGREEMENT,OBLIGATION):-possible_t(intangibleParts,AGREEMENT,OBLIGATION),isa(AGREEMENT,Agreement),isa(OBLIGATION,Obligation),not_true_t(agentViolatesAgreement,WOMAN,AGREEMENT),true_t(agreeingAgents,AGREEMENT,WOMAN),true_t(agentViolatesObligation,WOMAN,OBLIGATION).true_t(agentViolatesAgreement,
- WOMAN,
- AGREEMENT) :-
- w_infer_by(tell28:9),
- poss(agentViolatesAgreement(WOMAN, AGREEMENT)),
- isa(AGREEMENT, 'Agreement'),
- agreeingAgents(AGREEMENT, WOMAN),
- intangibleParts(AGREEMENT, OBLIGATION),
- isa(OBLIGATION, 'Obligation'),
- agentViolatesObligation(WOMAN, OBLIGATION).
- %
- tell28:9 true_t(agentViolatesAgreement,WOMAN,AGREEMENT):-possible_t(agentViolatesAgreement,WOMAN,AGREEMENT),isa(AGREEMENT,Agreement),true_t(agreeingAgents,AGREEMENT,WOMAN),true_t(intangibleParts,AGREEMENT,OBLIGATION),isa(OBLIGATION,Obligation),true_t(agentViolatesObligation,WOMAN,OBLIGATION).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ '\n(implies\n (and \n (isa ?AGREEMENT Agreement) \n (intangibleParts ?AGREEMENT ?OBLIGATION) \n (isa ?OBLIGATION Obligation) \n (agreeingAgents ?AGREEMENT ?WOMAN) \n (agentViolatesObligation ?WOMAN ?OBLIGATION)) \n (agentViolatesAgreement ?WOMAN ?AGREEMENT))'
- ].
- pkif :-
- [ '\n(implies\n (and \n (isa ?AGREEMENT Agreement) \n (intangibleParts ?AGREEMENT ?OBLIGATION) \n (isa ?OBLIGATION Obligation) \n (agreeingAgents ?AGREEMENT ?WOMAN) \n (agentViolatesObligation ?WOMAN ?OBLIGATION)) \n (agentViolatesAgreement ?WOMAN ?AGREEMENT))'
- ].
- cnf :-
- '\n(implies\n (and \n (isa ?AGREEMENT Agreement) \n (intangibleParts ?AGREEMENT ?OBLIGATION) \n (isa ?OBLIGATION Obligation) \n (agreeingAgents ?AGREEMENT ?WOMAN) \n (agentViolatesObligation ?WOMAN ?OBLIGATION)) \n (agentViolatesAgreement ?WOMAN ?AGREEMENT))'.
- %
- tell29:0
- (implies
- (and
- (isa ?AGREEMENT Agreement)
- (intangibleParts ?AGREEMENT ?OBLIGATION)
- (isa ?OBLIGATION Obligation)
- (agreeingAgents ?AGREEMENT ?WOMAN)
- (agentViolatesObligation ?WOMAN ?OBLIGATION))
- (agentViolatesAgreement ?WOMAN ?AGREEMENT)).
- tell29:0
- (implies
- (and
- (isa ?AGREEMENT Agreement)
- (intangibleParts ?AGREEMENT ?OBLIGATION)
- (isa ?OBLIGATION Obligation)
- (agreeingAgents ?AGREEMENT ?WOMAN)
- (agentViolatesObligation ?WOMAN ?OBLIGATION))
- (agentViolatesAgreement ?WOMAN ?AGREEMENT)).pttp :-
- [ ('\n(implies\n (and \n (isa ?AGREEMENT Agreement) \n (intangibleParts ?AGREEMENT ?OBLIGATION) \n (isa ?OBLIGATION Obligation) \n (agreeingAgents ?AGREEMENT ?WOMAN) \n (agentViolatesObligation ?WOMAN ?OBLIGATION)) \n (agentViolatesAgreement ?WOMAN ?AGREEMENT))':-true)
- ].
- %
- '\n(implies\n (and \n (isa ?AGREEMENT Agreement) \n (intangibleParts ?AGREEMENT ?OBLIGATION) \n (isa ?OBLIGATION Obligation) \n (agreeingAgents ?AGREEMENT ?WOMAN) \n (agentViolatesObligation ?WOMAN ?OBLIGATION)) \n (agentViolatesAgreement ?WOMAN ?AGREEMENT))' :-
- w_infer_by(tell29:0),
- [].
- %
- tell29:0
- (implies
- (and
- (isa ?AGREEMENT Agreement)
- (intangibleParts ?AGREEMENT ?OBLIGATION)
- (isa ?OBLIGATION Obligation)
- (agreeingAgents ?AGREEMENT ?WOMAN)
- (agentViolatesObligation ?WOMAN ?OBLIGATION))
- (agentViolatesAgreement ?WOMAN ?AGREEMENT)):-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ all[SEEING],
- [ all[WOMAN],
- [ all[PART_TYPE],
- [ all[THEMAN],
- [ ex[SIT],
- [ implies,
- [ isa(SEEING, 'VisualEvent'),
- objectActedOn(SEEING, WOMAN),
- isa(WOMAN, 'ExhibitionistOffender'),
- actorPartsInvolved(SEEING, PART_TYPE),
- physicalPartTypes('Eyes', PART_TYPE),
- performedBy(SEEING, THEMAN)
- ],
- (=>),
- [ 'increases-Generic'(SIT,
- relationExistsInstance(bodilyDoer,
- 'Shaming',
- THEMAN),
- 'probability-Generic')
- ]
- ]
- ]
- ]
- ]
- ]
- ].
- pkif :-
- [ implies,
- [ poss(KB,
- 'increases-Generic'(SIT,
- relationExistsInstance(bodilyDoer,
- 'Shaming',
- THEMAN),
- 'probability-Generic'))
- ],
- (=>),
- [ implies,
- [poss(KB, performedBy(SEEING, THEMAN))],
- (=>),
- [ implies,
- [poss(KB, physicalPartTypes('Eyes', PART_TYPE))],
- (=>),
- [ implies,
- [poss(KB, actorPartsInvolved(SEEING, PART_TYPE))],
- (=>),
- [ implies,
- [poss(KB, objectActedOn(SEEING, WOMAN))],
- (=>),
- [ all[SEEING],
- [ all[WOMAN],
- [ all[PART_TYPE],
- [ all[THEMAN],
- [ ex[SIT],
- [ implies,
- [ isa(SEEING, 'VisualEvent'),
- objectActedOn(SEEING, WOMAN),
- isa(WOMAN, 'ExhibitionistOffender'),
- actorPartsInvolved(SEEING, PART_TYPE),
- physicalPartTypes('Eyes', PART_TYPE),
- performedBy(SEEING, THEMAN)
- ],
- (=>),
- [ 'increases-Generic'(SIT,
- relationExistsInstance(bodilyDoer,
- 'Shaming',
- THEMAN),
- 'probability-Generic')
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ].
- cnf :-
- ( not(possible_t('increases-Generic'(SIT,
- relationExistsInstance(bodilyDoer,
- 'Shaming',
- THEMAN),
- 'probability-Generic')))
- ; not(possible_t(performedBy(SEEING, THEMAN)))
- ; not(possible_t(physicalPartTypes('Eyes', PART_TYPE)))
- ; not(possible_t(actorPartsInvolved(SEEING, PART_TYPE)))
- ; not(possible_t(objectActedOn(SEEING, WOMAN)))
- ; not(skolem(SIT,
- skArg1ofIncreasesgenericFn(THEMAN,
- PART_TYPE,
- WOMAN,
- SEEING)))
- ; 'increases-Generic'(SIT,
- relationExistsInstance(bodilyDoer,
- 'Shaming',
- THEMAN),
- 'probability-Generic')
- ; not(isa(SEEING, 'VisualEvent'))
- ; not(objectActedOn(SEEING, WOMAN))
- ; not(isa(WOMAN, 'ExhibitionistOffender'))
- ; not(actorPartsInvolved(SEEING, PART_TYPE))
- ; not(physicalPartTypes('Eyes', PART_TYPE))
- ; not(performedBy(SEEING, THEMAN))
- ).
- %
- tell30:0 not_possible_t(increases-Generic,SIT,relationExistsInstance(bodilyDoer,Shaming,THEMAN),probability-Generic);not_possible_t(performedBy,SEEING,THEMAN);not_possible_t(physicalPartTypes,Eyes,PART_TYPE);not_possible_t(actorPartsInvolved,SEEING,PART_TYPE);not_possible_t(objectActedOn,SEEING,WOMAN);not_call_builtin(skolem,SIT,skArg1ofIncreasesgenericFn(THEMAN,PART_TYPE,WOMAN,SEEING));true_t(increases-Generic,SIT,relationExistsInstance(bodilyDoer,Shaming,THEMAN),probability-Generic);not_isa(SEEING,VisualEvent);not_true_t(objectActedOn,SEEING,WOMAN);not_isa(WOMAN,ExhibitionistOffender);not_true_t(actorPartsInvolved,SEEING,PART_TYPE);not_true_t(physicalPartTypes,Eyes,PART_TYPE);not_true_t(performedBy,SEEING,THEMAN).pttp :-
- [ (not_isa(SEEING, 'VisualEvent'):-possible_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), possible_t(performedBy, SEEING, THEMAN), possible_t(physicalPartTypes, 'Eyes', PART_TYPE), possible_t(actorPartsInvolved, SEEING, PART_TYPE), possible_t(objectActedOn, SEEING, WOMAN), call_builtin(skolem, SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)), not_true_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), true_t(objectActedOn, SEEING, WOMAN), isa(WOMAN, 'ExhibitionistOffender'), true_t(actorPartsInvolved, SEEING, PART_TYPE), true_t(physicalPartTypes, 'Eyes', PART_TYPE), true_t(performedBy, SEEING, THEMAN)),
- (not_isa(WOMAN, 'ExhibitionistOffender'):-possible_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), possible_t(performedBy, SEEING, THEMAN), possible_t(physicalPartTypes, 'Eyes', PART_TYPE), possible_t(actorPartsInvolved, SEEING, PART_TYPE), possible_t(objectActedOn, SEEING, WOMAN), call_builtin(skolem, SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)), not_true_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), isa(SEEING, 'VisualEvent'), true_t(objectActedOn, SEEING, WOMAN), true_t(actorPartsInvolved, SEEING, PART_TYPE), true_t(physicalPartTypes, 'Eyes', PART_TYPE), true_t(performedBy, SEEING, THEMAN)),
- (not_call_builtin(skolem, SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)):-possible_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), possible_t(performedBy, SEEING, THEMAN), possible_t(physicalPartTypes, 'Eyes', PART_TYPE), possible_t(actorPartsInvolved, SEEING, PART_TYPE), possible_t(objectActedOn, SEEING, WOMAN), not_true_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), isa(SEEING, 'VisualEvent'), true_t(objectActedOn, SEEING, WOMAN), isa(WOMAN, 'ExhibitionistOffender'), true_t(actorPartsInvolved, SEEING, PART_TYPE), true_t(physicalPartTypes, 'Eyes', PART_TYPE), true_t(performedBy, SEEING, THEMAN)),
- (not_possible_t(actorPartsInvolved, SEEING, PART_TYPE):-possible_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), possible_t(performedBy, SEEING, THEMAN), possible_t(physicalPartTypes, 'Eyes', PART_TYPE), possible_t(objectActedOn, SEEING, WOMAN), call_builtin(skolem, SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)), not_true_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), isa(SEEING, 'VisualEvent'), true_t(objectActedOn, SEEING, WOMAN), isa(WOMAN, 'ExhibitionistOffender'), true_t(actorPartsInvolved, SEEING, PART_TYPE), true_t(physicalPartTypes, 'Eyes', PART_TYPE), true_t(performedBy, SEEING, THEMAN)),
- (not_possible_t(objectActedOn, SEEING, WOMAN):-possible_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), possible_t(performedBy, SEEING, THEMAN), possible_t(physicalPartTypes, 'Eyes', PART_TYPE), possible_t(actorPartsInvolved, SEEING, PART_TYPE), call_builtin(skolem, SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)), not_true_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), isa(SEEING, 'VisualEvent'), true_t(objectActedOn, SEEING, WOMAN), isa(WOMAN, 'ExhibitionistOffender'), true_t(actorPartsInvolved, SEEING, PART_TYPE), true_t(physicalPartTypes, 'Eyes', PART_TYPE), true_t(performedBy, SEEING, THEMAN)),
- (not_possible_t(performedBy, SEEING, THEMAN):-possible_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), possible_t(physicalPartTypes, 'Eyes', PART_TYPE), possible_t(actorPartsInvolved, SEEING, PART_TYPE), possible_t(objectActedOn, SEEING, WOMAN), call_builtin(skolem, SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)), not_true_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), isa(SEEING, 'VisualEvent'), true_t(objectActedOn, SEEING, WOMAN), isa(WOMAN, 'ExhibitionistOffender'), true_t(actorPartsInvolved, SEEING, PART_TYPE), true_t(physicalPartTypes, 'Eyes', PART_TYPE), true_t(performedBy, SEEING, THEMAN)),
- (not_possible_t(physicalPartTypes, 'Eyes', PART_TYPE):-possible_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), possible_t(performedBy, SEEING, THEMAN), possible_t(actorPartsInvolved, SEEING, PART_TYPE), possible_t(objectActedOn, SEEING, WOMAN), call_builtin(skolem, SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)), not_true_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), isa(SEEING, 'VisualEvent'), true_t(objectActedOn, SEEING, WOMAN), isa(WOMAN, 'ExhibitionistOffender'), true_t(actorPartsInvolved, SEEING, PART_TYPE), true_t(physicalPartTypes, 'Eyes', PART_TYPE), true_t(performedBy, SEEING, THEMAN)),
- (not_true_t(actorPartsInvolved, SEEING, PART_TYPE):-possible_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), possible_t(performedBy, SEEING, THEMAN), possible_t(physicalPartTypes, 'Eyes', PART_TYPE), possible_t(actorPartsInvolved, SEEING, PART_TYPE), possible_t(objectActedOn, SEEING, WOMAN), call_builtin(skolem, SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)), not_true_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), isa(SEEING, 'VisualEvent'), true_t(objectActedOn, SEEING, WOMAN), isa(WOMAN, 'ExhibitionistOffender'), true_t(physicalPartTypes, 'Eyes', PART_TYPE), true_t(performedBy, SEEING, THEMAN)),
- (not_true_t(objectActedOn, SEEING, WOMAN):-possible_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), possible_t(performedBy, SEEING, THEMAN), possible_t(physicalPartTypes, 'Eyes', PART_TYPE), possible_t(actorPartsInvolved, SEEING, PART_TYPE), possible_t(objectActedOn, SEEING, WOMAN), call_builtin(skolem, SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)), not_true_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), isa(SEEING, 'VisualEvent'), isa(WOMAN, 'ExhibitionistOffender'), true_t(actorPartsInvolved, SEEING, PART_TYPE), true_t(physicalPartTypes, 'Eyes', PART_TYPE), true_t(performedBy, SEEING, THEMAN)),
- (not_true_t(performedBy, SEEING, THEMAN):-possible_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), possible_t(performedBy, SEEING, THEMAN), possible_t(physicalPartTypes, 'Eyes', PART_TYPE), possible_t(actorPartsInvolved, SEEING, PART_TYPE), possible_t(objectActedOn, SEEING, WOMAN), call_builtin(skolem, SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)), not_true_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), isa(SEEING, 'VisualEvent'), true_t(objectActedOn, SEEING, WOMAN), isa(WOMAN, 'ExhibitionistOffender'), true_t(actorPartsInvolved, SEEING, PART_TYPE), true_t(physicalPartTypes, 'Eyes', PART_TYPE)),
- (not_true_t(physicalPartTypes, 'Eyes', PART_TYPE):-possible_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), possible_t(performedBy, SEEING, THEMAN), possible_t(physicalPartTypes, 'Eyes', PART_TYPE), possible_t(actorPartsInvolved, SEEING, PART_TYPE), possible_t(objectActedOn, SEEING, WOMAN), call_builtin(skolem, SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)), not_true_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), isa(SEEING, 'VisualEvent'), true_t(objectActedOn, SEEING, WOMAN), isa(WOMAN, 'ExhibitionistOffender'), true_t(actorPartsInvolved, SEEING, PART_TYPE), true_t(performedBy, SEEING, THEMAN)),
- (not_possible_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'):-possible_t(performedBy, SEEING, THEMAN), possible_t(physicalPartTypes, 'Eyes', PART_TYPE), possible_t(actorPartsInvolved, SEEING, PART_TYPE), possible_t(objectActedOn, SEEING, WOMAN), call_builtin(skolem, SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)), not_true_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), isa(SEEING, 'VisualEvent'), true_t(objectActedOn, SEEING, WOMAN), isa(WOMAN, 'ExhibitionistOffender'), true_t(actorPartsInvolved, SEEING, PART_TYPE), true_t(physicalPartTypes, 'Eyes', PART_TYPE), true_t(performedBy, SEEING, THEMAN)),
- (true_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'):-possible_t('increases-Generic', SIT, relationExistsInstance(bodilyDoer, 'Shaming', THEMAN), 'probability-Generic'), possible_t(performedBy, SEEING, THEMAN), possible_t(physicalPartTypes, 'Eyes', PART_TYPE), possible_t(actorPartsInvolved, SEEING, PART_TYPE), possible_t(objectActedOn, SEEING, WOMAN), call_builtin(skolem, SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)), isa(SEEING, 'VisualEvent'), true_t(objectActedOn, SEEING, WOMAN), isa(WOMAN, 'ExhibitionistOffender'), true_t(actorPartsInvolved, SEEING, PART_TYPE), true_t(physicalPartTypes, 'Eyes', PART_TYPE), true_t(performedBy, SEEING, THEMAN))
- ].
- %
- not_isa(SEEING, 'VisualEvent') :-
- w_infer_by(tell30:0),
- objectActedOn(SEEING, WOMAN),
- isa(WOMAN, 'ExhibitionistOffender'),
- actorPartsInvolved(SEEING, PART_TYPE),
- physicalPartTypes('Eyes', PART_TYPE),
- performedBy(SEEING, THEMAN),
- not('increases-Generic'(SIT,
- relationExistsInstance(bodilyDoer,
- 'Shaming',
- THEMAN),
- 'probability-Generic')),
- skolem(SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)).
- %
- tell30:0 not_isa(SEEING,VisualEvent):-true_t(objectActedOn,SEEING,WOMAN),isa(WOMAN,ExhibitionistOffender),true_t(actorPartsInvolved,SEEING,PART_TYPE),true_t(physicalPartTypes,Eyes,PART_TYPE),true_t(performedBy,SEEING,THEMAN),not_true_t(increases-Generic,SIT,relationExistsInstance(bodilyDoer,Shaming,THEMAN),probability-Generic),call_builtin(skolem,SIT,skArg1ofIncreasesgenericFn(THEMAN,PART_TYPE,WOMAN,SEEING)).not_isa(WOMAN,
- 'ExhibitionistOffender') :-
- w_infer_by(tell30:1),
- isa(SEEING, 'VisualEvent'),
- objectActedOn(SEEING, WOMAN),
- physicalPartTypes('Eyes', PART_TYPE),
- not('increases-Generic'(SIT,
- relationExistsInstance(bodilyDoer,
- 'Shaming',
- THEMAN),
- 'probability-Generic')),
- actorPartsInvolved(SEEING, PART_TYPE),
- performedBy(SEEING, THEMAN),
- skolem(SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)).
- %
- tell30:1 not_isa(WOMAN,ExhibitionistOffender):-isa(SEEING,VisualEvent),true_t(objectActedOn,SEEING,WOMAN),true_t(physicalPartTypes,Eyes,PART_TYPE),not_true_t(increases-Generic,SIT,relationExistsInstance(bodilyDoer,Shaming,THEMAN),probability-Generic),true_t(actorPartsInvolved,SEEING,PART_TYPE),true_t(performedBy,SEEING,THEMAN),call_builtin(skolem,SIT,skArg1ofIncreasesgenericFn(THEMAN,PART_TYPE,WOMAN,SEEING)).not_call_builtin(skolem,
- SIT,
- skArg1ofIncreasesgenericFn(THEMAN,
- PART_TYPE,
- WOMAN,
- SEEING)) :-
- w_infer_by(tell30:2),
- not('increases-Generic'(SIT,
- relationExistsInstance(bodilyDoer,
- 'Shaming',
- THEMAN),
- 'probability-Generic')),
- isa(SEEING, 'VisualEvent'),
- objectActedOn(SEEING, WOMAN),
- isa(WOMAN, 'ExhibitionistOffender'),
- actorPartsInvolved(SEEING, PART_TYPE),
- physicalPartTypes('Eyes', PART_TYPE),
- performedBy(SEEING, THEMAN).
- %
- tell30:2 not_call_builtin(skolem,SIT,skArg1ofIncreasesgenericFn(THEMAN,PART_TYPE,WOMAN,SEEING)):-not_true_t(increases-Generic,SIT,relationExistsInstance(bodilyDoer,Shaming,THEMAN),probability-Generic),isa(SEEING,VisualEvent),true_t(objectActedOn,SEEING,WOMAN),isa(WOMAN,ExhibitionistOffender),true_t(actorPartsInvolved,SEEING,PART_TYPE),true_t(physicalPartTypes,Eyes,PART_TYPE),true_t(performedBy,SEEING,THEMAN).not_possible_t(actorPartsInvolved,
- SEEING,
- PART_TYPE) :-
- w_infer_by(tell30:3),
- isa(SEEING, 'VisualEvent'),
- actorPartsInvolved(SEEING, PART_TYPE),
- physicalPartTypes('Eyes', PART_TYPE),
- objectActedOn(SEEING, WOMAN),
- isa(WOMAN, 'ExhibitionistOffender'),
- performedBy(SEEING, THEMAN),
- not('increases-Generic'(SIT,
- relationExistsInstance(bodilyDoer,
- 'Shaming',
- THEMAN),
- 'probability-Generic')),
- skolem(SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)).
- %
- tell30:3 not_possible_t(actorPartsInvolved,SEEING,PART_TYPE):-isa(SEEING,VisualEvent),true_t(actorPartsInvolved,SEEING,PART_TYPE),true_t(physicalPartTypes,Eyes,PART_TYPE),true_t(objectActedOn,SEEING,WOMAN),isa(WOMAN,ExhibitionistOffender),true_t(performedBy,SEEING,THEMAN),not_true_t(increases-Generic,SIT,relationExistsInstance(bodilyDoer,Shaming,THEMAN),probability-Generic),call_builtin(skolem,SIT,skArg1ofIncreasesgenericFn(THEMAN,PART_TYPE,WOMAN,SEEING)).not_possible_t(objectActedOn,
- SEEING,
- WOMAN) :-
- w_infer_by(tell30:4),
- isa(SEEING, 'VisualEvent'),
- objectActedOn(SEEING, WOMAN),
- isa(WOMAN, 'ExhibitionistOffender'),
- actorPartsInvolved(SEEING, PART_TYPE),
- physicalPartTypes('Eyes', PART_TYPE),
- performedBy(SEEING, THEMAN),
- not('increases-Generic'(SIT,
- relationExistsInstance(bodilyDoer,
- 'Shaming',
- THEMAN),
- 'probability-Generic')),
- skolem(SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)).
- %
- tell30:4 not_possible_t(objectActedOn,SEEING,WOMAN):-isa(SEEING,VisualEvent),true_t(objectActedOn,SEEING,WOMAN),isa(WOMAN,ExhibitionistOffender),true_t(actorPartsInvolved,SEEING,PART_TYPE),true_t(physicalPartTypes,Eyes,PART_TYPE),true_t(performedBy,SEEING,THEMAN),not_true_t(increases-Generic,SIT,relationExistsInstance(bodilyDoer,Shaming,THEMAN),probability-Generic),call_builtin(skolem,SIT,skArg1ofIncreasesgenericFn(THEMAN,PART_TYPE,WOMAN,SEEING)).not_possible_t(performedBy,
- SEEING,
- THEMAN) :-
- w_infer_by(tell30:5),
- isa(SEEING, 'VisualEvent'),
- performedBy(SEEING, THEMAN),
- not('increases-Generic'(SIT,
- relationExistsInstance(bodilyDoer,
- 'Shaming',
- THEMAN),
- 'probability-Generic')),
- objectActedOn(SEEING, WOMAN),
- isa(WOMAN, 'ExhibitionistOffender'),
- actorPartsInvolved(SEEING, PART_TYPE),
- physicalPartTypes('Eyes', PART_TYPE),
- skolem(SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)).
- %
- tell30:5 not_possible_t(performedBy,SEEING,THEMAN):-isa(SEEING,VisualEvent),true_t(performedBy,SEEING,THEMAN),not_true_t(increases-Generic,SIT,relationExistsInstance(bodilyDoer,Shaming,THEMAN),probability-Generic),true_t(objectActedOn,SEEING,WOMAN),isa(WOMAN,ExhibitionistOffender),true_t(actorPartsInvolved,SEEING,PART_TYPE),true_t(physicalPartTypes,Eyes,PART_TYPE),call_builtin(skolem,SIT,skArg1ofIncreasesgenericFn(THEMAN,PART_TYPE,WOMAN,SEEING)).not_possible_t(physicalPartTypes,
- 'Eyes',
- PART_TYPE) :-
- w_infer_by(tell30:6),
- physicalPartTypes('Eyes', PART_TYPE),
- isa(SEEING, 'VisualEvent'),
- isa(WOMAN, 'ExhibitionistOffender'),
- actorPartsInvolved(SEEING, PART_TYPE),
- not('increases-Generic'(SIT,
- relationExistsInstance(bodilyDoer,
- 'Shaming',
- THEMAN),
- 'probability-Generic')),
- objectActedOn(SEEING, WOMAN),
- performedBy(SEEING, THEMAN),
- skolem(SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)).
- %
- tell30:6 not_possible_t(physicalPartTypes,Eyes,PART_TYPE):-true_t(physicalPartTypes,Eyes,PART_TYPE),isa(SEEING,VisualEvent),isa(WOMAN,ExhibitionistOffender),true_t(actorPartsInvolved,SEEING,PART_TYPE),not_true_t(increases-Generic,SIT,relationExistsInstance(bodilyDoer,Shaming,THEMAN),probability-Generic),true_t(objectActedOn,SEEING,WOMAN),true_t(performedBy,SEEING,THEMAN),call_builtin(skolem,SIT,skArg1ofIncreasesgenericFn(THEMAN,PART_TYPE,WOMAN,SEEING)).not_true_t(actorPartsInvolved,
- SEEING,
- PART_TYPE) :-
- w_infer_by(tell30:7),
- poss(actorPartsInvolved(SEEING, PART_TYPE)),
- isa(SEEING, 'VisualEvent'),
- physicalPartTypes('Eyes', PART_TYPE),
- objectActedOn(SEEING, WOMAN),
- isa(WOMAN, 'ExhibitionistOffender'),
- performedBy(SEEING, THEMAN),
- not('increases-Generic'(SIT,
- relationExistsInstance(bodilyDoer,
- 'Shaming',
- THEMAN),
- 'probability-Generic')),
- skolem(SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)).
- %
- tell30:7 not_true_t(actorPartsInvolved,SEEING,PART_TYPE):-possible_t(actorPartsInvolved,SEEING,PART_TYPE),isa(SEEING,VisualEvent),true_t(physicalPartTypes,Eyes,PART_TYPE),true_t(objectActedOn,SEEING,WOMAN),isa(WOMAN,ExhibitionistOffender),true_t(performedBy,SEEING,THEMAN),not_true_t(increases-Generic,SIT,relationExistsInstance(bodilyDoer,Shaming,THEMAN),probability-Generic),call_builtin(skolem,SIT,skArg1ofIncreasesgenericFn(THEMAN,PART_TYPE,WOMAN,SEEING)).not_true_t(objectActedOn,
- SEEING,
- WOMAN) :-
- w_infer_by(tell30:8),
- poss(objectActedOn(SEEING, WOMAN)),
- isa(SEEING, 'VisualEvent'),
- isa(WOMAN, 'ExhibitionistOffender'),
- actorPartsInvolved(SEEING, PART_TYPE),
- physicalPartTypes('Eyes', PART_TYPE),
- performedBy(SEEING, THEMAN),
- not('increases-Generic'(SIT,
- relationExistsInstance(bodilyDoer,
- 'Shaming',
- THEMAN),
- 'probability-Generic')),
- skolem(SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)).
- %
- tell30:8 not_true_t(objectActedOn,SEEING,WOMAN):-possible_t(objectActedOn,SEEING,WOMAN),isa(SEEING,VisualEvent),isa(WOMAN,ExhibitionistOffender),true_t(actorPartsInvolved,SEEING,PART_TYPE),true_t(physicalPartTypes,Eyes,PART_TYPE),true_t(performedBy,SEEING,THEMAN),not_true_t(increases-Generic,SIT,relationExistsInstance(bodilyDoer,Shaming,THEMAN),probability-Generic),call_builtin(skolem,SIT,skArg1ofIncreasesgenericFn(THEMAN,PART_TYPE,WOMAN,SEEING)).not_true_t(performedBy,
- SEEING,
- THEMAN) :-
- w_infer_by(tell30:9),
- poss(performedBy(SEEING, THEMAN)),
- isa(SEEING, 'VisualEvent'),
- not('increases-Generic'(SIT,
- relationExistsInstance(bodilyDoer,
- 'Shaming',
- THEMAN),
- 'probability-Generic')),
- objectActedOn(SEEING, WOMAN),
- isa(WOMAN, 'ExhibitionistOffender'),
- actorPartsInvolved(SEEING, PART_TYPE),
- physicalPartTypes('Eyes', PART_TYPE),
- skolem(SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)).
- %
- tell30:9 not_true_t(performedBy,SEEING,THEMAN):-possible_t(performedBy,SEEING,THEMAN),isa(SEEING,VisualEvent),not_true_t(increases-Generic,SIT,relationExistsInstance(bodilyDoer,Shaming,THEMAN),probability-Generic),true_t(objectActedOn,SEEING,WOMAN),isa(WOMAN,ExhibitionistOffender),true_t(actorPartsInvolved,SEEING,PART_TYPE),true_t(physicalPartTypes,Eyes,PART_TYPE),call_builtin(skolem,SIT,skArg1ofIncreasesgenericFn(THEMAN,PART_TYPE,WOMAN,SEEING)).not_true_t(physicalPartTypes,
- 'Eyes',
- PART_TYPE) :-
- w_infer_by(tell30:10),
- poss(physicalPartTypes('Eyes', PART_TYPE)),
- isa(SEEING, 'VisualEvent'),
- isa(WOMAN, 'ExhibitionistOffender'),
- actorPartsInvolved(SEEING, PART_TYPE),
- not('increases-Generic'(SIT,
- relationExistsInstance(bodilyDoer,
- 'Shaming',
- THEMAN),
- 'probability-Generic')),
- objectActedOn(SEEING, WOMAN),
- performedBy(SEEING, THEMAN),
- skolem(SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)).
- %
- tell30:10 not_true_t(physicalPartTypes,Eyes,PART_TYPE):-possible_t(physicalPartTypes,Eyes,PART_TYPE),isa(SEEING,VisualEvent),isa(WOMAN,ExhibitionistOffender),true_t(actorPartsInvolved,SEEING,PART_TYPE),not_true_t(increases-Generic,SIT,relationExistsInstance(bodilyDoer,Shaming,THEMAN),probability-Generic),true_t(objectActedOn,SEEING,WOMAN),true_t(performedBy,SEEING,THEMAN),call_builtin(skolem,SIT,skArg1ofIncreasesgenericFn(THEMAN,PART_TYPE,WOMAN,SEEING)).not_possible_t('increases-Generic',
- SIT,
- relationExistsInstance(bodilyDoer,
- 'Shaming',
- THEMAN),
- 'probability-Generic') :-
- w_infer_by(tell30:11),
- not('increases-Generic'(SIT,
- relationExistsInstance(bodilyDoer,
- 'Shaming',
- THEMAN),
- 'probability-Generic')),
- isa(SEEING, 'VisualEvent'),
- isa(WOMAN, 'ExhibitionistOffender'),
- physicalPartTypes('Eyes', PART_TYPE),
- performedBy(SEEING, THEMAN),
- objectActedOn(SEEING, WOMAN),
- actorPartsInvolved(SEEING, PART_TYPE),
- skolem(SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)).
- %
- tell30:11 not_possible_t(increases-Generic,SIT,relationExistsInstance(bodilyDoer,Shaming,THEMAN),probability-Generic):-not_true_t(increases-Generic,SIT,relationExistsInstance(bodilyDoer,Shaming,THEMAN),probability-Generic),isa(SEEING,VisualEvent),isa(WOMAN,ExhibitionistOffender),true_t(physicalPartTypes,Eyes,PART_TYPE),true_t(performedBy,SEEING,THEMAN),true_t(objectActedOn,SEEING,WOMAN),true_t(actorPartsInvolved,SEEING,PART_TYPE),call_builtin(skolem,SIT,skArg1ofIncreasesgenericFn(THEMAN,PART_TYPE,WOMAN,SEEING)).true_t('increases-Generic',
- SIT,
- relationExistsInstance(bodilyDoer,
- 'Shaming',
- THEMAN),
- 'probability-Generic') :-
- w_infer_by(tell30:12),
- poss('increases-Generic'(SIT,
- relationExistsInstance(bodilyDoer,
- 'Shaming',
- THEMAN),
- 'probability-Generic')),
- isa(SEEING, 'VisualEvent'),
- isa(WOMAN, 'ExhibitionistOffender'),
- physicalPartTypes('Eyes', PART_TYPE),
- performedBy(SEEING, THEMAN),
- objectActedOn(SEEING, WOMAN),
- actorPartsInvolved(SEEING, PART_TYPE),
- skolem(SIT, skArg1ofIncreasesgenericFn(THEMAN, PART_TYPE, WOMAN, SEEING)).
- %
- tell30:12 true_t(increases-Generic,SIT,relationExistsInstance(bodilyDoer,Shaming,THEMAN),probability-Generic):-possible_t(increases-Generic,SIT,relationExistsInstance(bodilyDoer,Shaming,THEMAN),probability-Generic),isa(SEEING,VisualEvent),isa(WOMAN,ExhibitionistOffender),true_t(physicalPartTypes,Eyes,PART_TYPE),true_t(performedBy,SEEING,THEMAN),true_t(objectActedOn,SEEING,WOMAN),true_t(actorPartsInvolved,SEEING,PART_TYPE),call_builtin(skolem,SIT,skArg1ofIncreasesgenericFn(THEMAN,PART_TYPE,WOMAN,SEEING)).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ '\n(implies \n (and \n (isa ?SEEING VisualEvent) \n (objectActedOn ?SEEING ?WOMAN) \n (isa ?WOMAN ExhibitionistOffender) \n (actorPartsInvolved ?SEEING ?PART-TYPE) \n (physicalPartTypes Eyes ?PART-TYPE) \n (performedBy ?SEEING ?THEMAN)) \n (increases-Generic ?SIT \n (relationExistsInstance bodilyDoer \n Shaming ?THEMAN) probability-Generic))'
- ].
- pkif :-
- [ '\n(implies \n (and \n (isa ?SEEING VisualEvent) \n (objectActedOn ?SEEING ?WOMAN) \n (isa ?WOMAN ExhibitionistOffender) \n (actorPartsInvolved ?SEEING ?PART-TYPE) \n (physicalPartTypes Eyes ?PART-TYPE) \n (performedBy ?SEEING ?THEMAN)) \n (increases-Generic ?SIT \n (relationExistsInstance bodilyDoer \n Shaming ?THEMAN) probability-Generic))'
- ].
- cnf :-
- '\n(implies \n (and \n (isa ?SEEING VisualEvent) \n (objectActedOn ?SEEING ?WOMAN) \n (isa ?WOMAN ExhibitionistOffender) \n (actorPartsInvolved ?SEEING ?PART-TYPE) \n (physicalPartTypes Eyes ?PART-TYPE) \n (performedBy ?SEEING ?THEMAN)) \n (increases-Generic ?SIT \n (relationExistsInstance bodilyDoer \n Shaming ?THEMAN) probability-Generic))'.
- %
- tell31:0
- (implies
- (and
- (isa ?SEEING VisualEvent)
- (objectActedOn ?SEEING ?WOMAN)
- (isa ?WOMAN ExhibitionistOffender)
- (actorPartsInvolved ?SEEING ?PART-TYPE)
- (physicalPartTypes Eyes ?PART-TYPE)
- (performedBy ?SEEING ?THEMAN))
- (increases-Generic ?SIT
- (relationExistsInstance bodilyDoer
- Shaming ?THEMAN) probability-Generic)).
- tell31:0
- (implies
- (and
- (isa ?SEEING VisualEvent)
- (objectActedOn ?SEEING ?WOMAN)
- (isa ?WOMAN ExhibitionistOffender)
- (actorPartsInvolved ?SEEING ?PART-TYPE)
- (physicalPartTypes Eyes ?PART-TYPE)
- (performedBy ?SEEING ?THEMAN))
- (increases-Generic ?SIT
- (relationExistsInstance bodilyDoer
- Shaming ?THEMAN) probability-Generic)).pttp :-
- [ ('\n(implies \n (and \n (isa ?SEEING VisualEvent) \n (objectActedOn ?SEEING ?WOMAN) \n (isa ?WOMAN ExhibitionistOffender) \n (actorPartsInvolved ?SEEING ?PART-TYPE) \n (physicalPartTypes Eyes ?PART-TYPE) \n (performedBy ?SEEING ?THEMAN)) \n (increases-Generic ?SIT \n (relationExistsInstance bodilyDoer \n Shaming ?THEMAN) probability-Generic))':-true)
- ].
- %
- '\n(implies \n (and \n (isa ?SEEING VisualEvent) \n (objectActedOn ?SEEING ?WOMAN) \n (isa ?WOMAN ExhibitionistOffender) \n (actorPartsInvolved ?SEEING ?PART-TYPE) \n (physicalPartTypes Eyes ?PART-TYPE) \n (performedBy ?SEEING ?THEMAN)) \n (increases-Generic ?SIT \n (relationExistsInstance bodilyDoer \n Shaming ?THEMAN) probability-Generic))' :-
- w_infer_by(tell31:0),
- [].
- %
- tell31:0
- (implies
- (and
- (isa ?SEEING VisualEvent)
- (objectActedOn ?SEEING ?WOMAN)
- (isa ?WOMAN ExhibitionistOffender)
- (actorPartsInvolved ?SEEING ?PART-TYPE)
- (physicalPartTypes Eyes ?PART-TYPE)
- (performedBy ?SEEING ?THEMAN))
- (increases-Generic ?SIT
- (relationExistsInstance bodilyDoer
- Shaming ?THEMAN) probability-Generic)):-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ all[ACT],
- [ all[PERP],
- [ implies,
- [ isa(ACT, 'CriminalAct'),
- isa(ACT, 'Exhibitionism'),
- perpetrator(ACT, PERP)
- ],
- (=>),
- [isa(PERP, 'ExhibitionistOffender')]
- ]
- ]
- ].
- pkif :-
- [ implies,
- [poss(KB, perpetrator(ACT, PERP))],
- (=>),
- [ all[ACT],
- [ all[PERP],
- [ implies,
- [ isa(ACT, 'CriminalAct'),
- isa(ACT, 'Exhibitionism'),
- perpetrator(ACT, PERP)
- ],
- (=>),
- [isa(PERP, 'ExhibitionistOffender')]
- ]
- ]
- ]
- ].
- cnf :-
- ( not(possible_t(perpetrator(ACT, PERP)))
- ; isa(PERP, 'ExhibitionistOffender')
- ; not(isa(ACT, 'CriminalAct'))
- ; not(isa(ACT, 'Exhibitionism'))
- ; not(perpetrator(ACT, PERP))
- ).
- %
- tell32:0 not_possible_t(perpetrator,ACT,PERP);isa(PERP,ExhibitionistOffender);not_isa(ACT,CriminalAct);not_isa(ACT,Exhibitionism);not_true_t(perpetrator,ACT,PERP).pttp :-
- [ (isa(PERP, 'ExhibitionistOffender'):-possible_t(perpetrator, ACT, PERP), isa(ACT, 'CriminalAct'), isa(ACT, 'Exhibitionism'), true_t(perpetrator, ACT, PERP)),
- (not_isa(ACT, 'CriminalAct'):-possible_t(perpetrator, ACT, PERP), not_isa(PERP, 'ExhibitionistOffender'), isa(ACT, 'Exhibitionism'), true_t(perpetrator, ACT, PERP)),
- (not_isa(ACT, 'Exhibitionism'):-possible_t(perpetrator, ACT, PERP), not_isa(PERP, 'ExhibitionistOffender'), isa(ACT, 'CriminalAct'), true_t(perpetrator, ACT, PERP)),
- (not_possible_t(perpetrator, ACT, PERP):-not_isa(PERP, 'ExhibitionistOffender'), isa(ACT, 'CriminalAct'), isa(ACT, 'Exhibitionism'), true_t(perpetrator, ACT, PERP)),
- (not_true_t(perpetrator, ACT, PERP):-possible_t(perpetrator, ACT, PERP), not_isa(PERP, 'ExhibitionistOffender'), isa(ACT, 'CriminalAct'), isa(ACT, 'Exhibitionism'))
- ].
- %
- isa(PERP, 'ExhibitionistOffender') :-
- w_infer_by(tell32:0),
- isa(ACT, 'CriminalAct'),
- isa(ACT, 'Exhibitionism'),
- perpetrator(ACT, PERP).
- %
- tell32:0 isa(PERP,ExhibitionistOffender):-isa(ACT,CriminalAct),isa(ACT,Exhibitionism),true_t(perpetrator,ACT,PERP).not_isa(ACT,
- 'CriminalAct') :-
- w_infer_by(tell32:1),
- isa(ACT, 'Exhibitionism'),
- not(isa(PERP, 'ExhibitionistOffender')),
- perpetrator(ACT, PERP).
- %
- tell32:1 not_isa(ACT,CriminalAct):-isa(ACT,Exhibitionism),not_isa(PERP,ExhibitionistOffender),true_t(perpetrator,ACT,PERP).not_isa(ACT,
- 'Exhibitionism') :-
- w_infer_by(tell32:2),
- isa(ACT, 'CriminalAct'),
- not(isa(PERP, 'ExhibitionistOffender')),
- perpetrator(ACT, PERP).
- %
- tell32:2 not_isa(ACT,Exhibitionism):-isa(ACT,CriminalAct),not_isa(PERP,ExhibitionistOffender),true_t(perpetrator,ACT,PERP).not_possible_t(perpetrator,
- ACT,
- PERP) :-
- w_infer_by(tell32:3),
- not(isa(PERP, 'ExhibitionistOffender')),
- isa(ACT, 'CriminalAct'),
- isa(ACT, 'Exhibitionism'),
- perpetrator(ACT, PERP).
- %
- tell32:3 not_possible_t(perpetrator,ACT,PERP):-not_isa(PERP,ExhibitionistOffender),isa(ACT,CriminalAct),isa(ACT,Exhibitionism),true_t(perpetrator,ACT,PERP).not_true_t(perpetrator,
- ACT,
- PERP) :-
- w_infer_by(tell32:4),
- poss(perpetrator(ACT, PERP)),
- not(isa(PERP, 'ExhibitionistOffender')),
- isa(ACT, 'CriminalAct'),
- isa(ACT, 'Exhibitionism').
- %
- tell32:4 not_true_t(perpetrator,ACT,PERP):-possible_t(perpetrator,ACT,PERP),not_isa(PERP,ExhibitionistOffender),isa(ACT,CriminalAct),isa(ACT,Exhibitionism).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ '\n(implies \n (and \n (isa ?ACT CriminalAct) \n (isa ?ACT Exhibitionism) \n (perpetrator ?ACT ?PERP)) \n (isa ?PERP ExhibitionistOffender))'
- ].
- pkif :-
- [ '\n(implies \n (and \n (isa ?ACT CriminalAct) \n (isa ?ACT Exhibitionism) \n (perpetrator ?ACT ?PERP)) \n (isa ?PERP ExhibitionistOffender))'
- ].
- cnf :-
- '\n(implies \n (and \n (isa ?ACT CriminalAct) \n (isa ?ACT Exhibitionism) \n (perpetrator ?ACT ?PERP)) \n (isa ?PERP ExhibitionistOffender))'.
- %
- tell33:0
- (implies
- (and
- (isa ?ACT CriminalAct)
- (isa ?ACT Exhibitionism)
- (perpetrator ?ACT ?PERP))
- (isa ?PERP ExhibitionistOffender)).
- tell33:0
- (implies
- (and
- (isa ?ACT CriminalAct)
- (isa ?ACT Exhibitionism)
- (perpetrator ?ACT ?PERP))
- (isa ?PERP ExhibitionistOffender)).pttp :-
- [ ('\n(implies \n (and \n (isa ?ACT CriminalAct) \n (isa ?ACT Exhibitionism) \n (perpetrator ?ACT ?PERP)) \n (isa ?PERP ExhibitionistOffender))':-true)
- ].
- %
- '\n(implies \n (and \n (isa ?ACT CriminalAct) \n (isa ?ACT Exhibitionism) \n (perpetrator ?ACT ?PERP)) \n (isa ?PERP ExhibitionistOffender))' :-
- w_infer_by(tell33:0),
- [].
- %
- tell33:0
- (implies
- (and
- (isa ?ACT CriminalAct)
- (isa ?ACT Exhibitionism)
- (perpetrator ?ACT ?PERP))
- (isa ?PERP ExhibitionistOffender)):-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ all[PUNISH],
- [ all[THEMAN],
- [ all[WOMAN],
- [ implies,
- [ isa(PUNISH, 'Punishing'),
- performedBy(PUNISH, THEMAN),
- maleficiary(PUNISH, WOMAN)
- ],
- (=>),
- [ beliefs(THEMAN),
- [ex[OBLIGATION], [agentViolatesObligation(WOMAN, OBLIGATION)]]
- ]
- ]
- ]
- ]
- ].
- pkif :-
- [ implies,
- [ poss(KB,
- [beliefs(THEMAN), [agentViolatesObligation(WOMAN, OBLIGATION)]])
- ],
- (=>),
- [ implies,
- [poss(KB, maleficiary(PUNISH, WOMAN))],
- (=>),
- [ implies,
- [poss(KB, performedBy(PUNISH, THEMAN))],
- (=>),
- [ all[PUNISH],
- [ all[THEMAN],
- [ all[WOMAN],
- [ implies,
- [ isa(PUNISH, 'Punishing'),
- performedBy(PUNISH, THEMAN),
- maleficiary(PUNISH, WOMAN)
- ],
- (=>),
- [ beliefs(THEMAN),
- [ ex[OBLIGATION],
- [agentViolatesObligation(WOMAN, OBLIGATION)]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ].
- cnf :-
- ( not(beliefs(THEMAN, agentViolatesObligation(WOMAN, OBLIGATION)))
- ; not(possible_t(maleficiary(PUNISH, WOMAN)))
- ; not(possible_t(performedBy(PUNISH, THEMAN)))
- ; not(isa(PUNISH, 'Punishing'))
- ; not(performedBy(PUNISH, THEMAN))
- ; not(maleficiary(PUNISH, WOMAN))
- ; beliefs(THEMAN,
- (not(skolem(OBLIGATION, skUnkArg2ofAgentviolatesobligationFn(WOMAN, THEMAN, PUNISH)));agentViolatesObligation(WOMAN, OBLIGATION)))
- ).
- %
- tell34:0 not_true_t(beliefs,THEMAN,agentViolatesObligation(WOMAN,OBLIGATION));not_possible_t(maleficiary,PUNISH,WOMAN);not_possible_t(performedBy,PUNISH,THEMAN);not_isa(PUNISH,Punishing);not_true_t(performedBy,PUNISH,THEMAN);not_true_t(maleficiary,PUNISH,WOMAN);true_t(beliefs,THEMAN, (not_call_builtin(skolem,OBLIGATION,skUnkArg2ofAgentviolatesobligationFn(WOMAN,THEMAN,PUNISH));true_t(agentViolatesObligation,WOMAN,OBLIGATION))).pttp :-
- [ (not_isa(PUNISH, 'Punishing'):-true_t(beliefs, THEMAN, agentViolatesObligation(WOMAN, OBLIGATION)), possible_t(maleficiary, PUNISH, WOMAN), possible_t(performedBy, PUNISH, THEMAN), true_t(performedBy, PUNISH, THEMAN), true_t(maleficiary, PUNISH, WOMAN), not_true_t(beliefs, THEMAN, (not_call_builtin(skolem, OBLIGATION, skUnkArg2ofAgentviolatesobligationFn(WOMAN, THEMAN, PUNISH));true_t(agentViolatesObligation, WOMAN, OBLIGATION)))),
- (not_possible_t(maleficiary, PUNISH, WOMAN):-true_t(beliefs, THEMAN, agentViolatesObligation(WOMAN, OBLIGATION)), possible_t(performedBy, PUNISH, THEMAN), isa(PUNISH, 'Punishing'), true_t(performedBy, PUNISH, THEMAN), true_t(maleficiary, PUNISH, WOMAN), not_true_t(beliefs, THEMAN, (not_call_builtin(skolem, OBLIGATION, skUnkArg2ofAgentviolatesobligationFn(WOMAN, THEMAN, PUNISH));true_t(agentViolatesObligation, WOMAN, OBLIGATION)))),
- (not_possible_t(performedBy, PUNISH, THEMAN):-true_t(beliefs, THEMAN, agentViolatesObligation(WOMAN, OBLIGATION)), possible_t(maleficiary, PUNISH, WOMAN), isa(PUNISH, 'Punishing'), true_t(performedBy, PUNISH, THEMAN), true_t(maleficiary, PUNISH, WOMAN), not_true_t(beliefs, THEMAN, (not_call_builtin(skolem, OBLIGATION, skUnkArg2ofAgentviolatesobligationFn(WOMAN, THEMAN, PUNISH));true_t(agentViolatesObligation, WOMAN, OBLIGATION)))),
- (not_true_t(beliefs, THEMAN, agentViolatesObligation(WOMAN, OBLIGATION)):-possible_t(maleficiary, PUNISH, WOMAN), possible_t(performedBy, PUNISH, THEMAN), isa(PUNISH, 'Punishing'), true_t(performedBy, PUNISH, THEMAN), true_t(maleficiary, PUNISH, WOMAN), not_true_t(beliefs, THEMAN, (not_call_builtin(skolem, OBLIGATION, skUnkArg2ofAgentviolatesobligationFn(WOMAN, THEMAN, PUNISH));true_t(agentViolatesObligation, WOMAN, OBLIGATION)))),
- (not_true_t(maleficiary, PUNISH, WOMAN):-true_t(beliefs, THEMAN, agentViolatesObligation(WOMAN, OBLIGATION)), possible_t(maleficiary, PUNISH, WOMAN), possible_t(performedBy, PUNISH, THEMAN), isa(PUNISH, 'Punishing'), true_t(performedBy, PUNISH, THEMAN), not_true_t(beliefs, THEMAN, (not_call_builtin(skolem, OBLIGATION, skUnkArg2ofAgentviolatesobligationFn(WOMAN, THEMAN, PUNISH));true_t(agentViolatesObligation, WOMAN, OBLIGATION)))),
- (not_true_t(performedBy, PUNISH, THEMAN):-true_t(beliefs, THEMAN, agentViolatesObligation(WOMAN, OBLIGATION)), possible_t(maleficiary, PUNISH, WOMAN), possible_t(performedBy, PUNISH, THEMAN), isa(PUNISH, 'Punishing'), true_t(maleficiary, PUNISH, WOMAN), not_true_t(beliefs, THEMAN, (not_call_builtin(skolem, OBLIGATION, skUnkArg2ofAgentviolatesobligationFn(WOMAN, THEMAN, PUNISH));true_t(agentViolatesObligation, WOMAN, OBLIGATION)))),
- (true_t(beliefs, THEMAN, (not_call_builtin(skolem, OBLIGATION, skUnkArg2ofAgentviolatesobligationFn(WOMAN, THEMAN, PUNISH));true_t(agentViolatesObligation, WOMAN, OBLIGATION))):-true_t(beliefs, THEMAN, agentViolatesObligation(WOMAN, OBLIGATION)), possible_t(maleficiary, PUNISH, WOMAN), possible_t(performedBy, PUNISH, THEMAN), isa(PUNISH, 'Punishing'), true_t(performedBy, PUNISH, THEMAN), true_t(maleficiary, PUNISH, WOMAN))
- ].
- %
- not_isa(PUNISH, 'Punishing') :-
- w_infer_by(tell34:0),
- performedBy(PUNISH, THEMAN),
- maleficiary(PUNISH, WOMAN),
- beliefs(THEMAN, agentViolatesObligation(WOMAN, OBLIGATION)),
- not(beliefs(THEMAN,
- (not(skolem(OBLIGATION, skUnkArg2ofAgentviolatesobligationFn(WOMAN, THEMAN, PUNISH)));agentViolatesObligation(WOMAN, OBLIGATION)))).
- %
- tell34:0 not_isa(PUNISH,Punishing):-true_t(performedBy,PUNISH,THEMAN),true_t(maleficiary,PUNISH,WOMAN),true_t(beliefs,THEMAN,agentViolatesObligation(WOMAN,OBLIGATION)),not_true_t(beliefs,THEMAN, (not_call_builtin(skolem,OBLIGATION,skUnkArg2ofAgentviolatesobligationFn(WOMAN,THEMAN,PUNISH));true_t(agentViolatesObligation,WOMAN,OBLIGATION))).not_possible_t(maleficiary,
- PUNISH,
- WOMAN) :-
- w_infer_by(tell34:1),
- isa(PUNISH, 'Punishing'),
- maleficiary(PUNISH, WOMAN),
- performedBy(PUNISH, THEMAN),
- beliefs(THEMAN, agentViolatesObligation(WOMAN, OBLIGATION)),
- not(beliefs(THEMAN,
- (not(skolem(OBLIGATION, skUnkArg2ofAgentviolatesobligationFn(WOMAN, THEMAN, PUNISH)));agentViolatesObligation(WOMAN, OBLIGATION)))).
- %
- tell34:1 not_possible_t(maleficiary,PUNISH,WOMAN):-isa(PUNISH,Punishing),true_t(maleficiary,PUNISH,WOMAN),true_t(performedBy,PUNISH,THEMAN),true_t(beliefs,THEMAN,agentViolatesObligation(WOMAN,OBLIGATION)),not_true_t(beliefs,THEMAN, (not_call_builtin(skolem,OBLIGATION,skUnkArg2ofAgentviolatesobligationFn(WOMAN,THEMAN,PUNISH));true_t(agentViolatesObligation,WOMAN,OBLIGATION))).not_possible_t(performedBy,
- PUNISH,
- THEMAN) :-
- w_infer_by(tell34:2),
- isa(PUNISH, 'Punishing'),
- performedBy(PUNISH, THEMAN),
- maleficiary(PUNISH, WOMAN),
- beliefs(THEMAN, agentViolatesObligation(WOMAN, OBLIGATION)),
- not(beliefs(THEMAN,
- (not(skolem(OBLIGATION, skUnkArg2ofAgentviolatesobligationFn(WOMAN, THEMAN, PUNISH)));agentViolatesObligation(WOMAN, OBLIGATION)))).
- %
- tell34:2 not_possible_t(performedBy,PUNISH,THEMAN):-isa(PUNISH,Punishing),true_t(performedBy,PUNISH,THEMAN),true_t(maleficiary,PUNISH,WOMAN),true_t(beliefs,THEMAN,agentViolatesObligation(WOMAN,OBLIGATION)),not_true_t(beliefs,THEMAN, (not_call_builtin(skolem,OBLIGATION,skUnkArg2ofAgentviolatesobligationFn(WOMAN,THEMAN,PUNISH));true_t(agentViolatesObligation,WOMAN,OBLIGATION))).not_true_t(beliefs,
- THEMAN,
- agentViolatesObligation(WOMAN,
- OBLIGATION)) :-
- w_infer_by(tell34:3),
- isa(PUNISH, 'Punishing'),
- performedBy(PUNISH, THEMAN),
- maleficiary(PUNISH, WOMAN),
- not(beliefs(THEMAN,
- (not(skolem(OBLIGATION, skUnkArg2ofAgentviolatesobligationFn(WOMAN, THEMAN, PUNISH)));agentViolatesObligation(WOMAN, OBLIGATION)))).
- %
- tell34:3 not_true_t(beliefs,THEMAN,agentViolatesObligation(WOMAN,OBLIGATION)):-isa(PUNISH,Punishing),true_t(performedBy,PUNISH,THEMAN),true_t(maleficiary,PUNISH,WOMAN),not_true_t(beliefs,THEMAN, (not_call_builtin(skolem,OBLIGATION,skUnkArg2ofAgentviolatesobligationFn(WOMAN,THEMAN,PUNISH));true_t(agentViolatesObligation,WOMAN,OBLIGATION))).not_true_t(maleficiary,
- PUNISH,
- WOMAN) :-
- w_infer_by(tell34:4),
- poss(maleficiary(PUNISH, WOMAN)),
- isa(PUNISH, 'Punishing'),
- performedBy(PUNISH, THEMAN),
- beliefs(THEMAN, agentViolatesObligation(WOMAN, OBLIGATION)),
- not(beliefs(THEMAN,
- (not(skolem(OBLIGATION, skUnkArg2ofAgentviolatesobligationFn(WOMAN, THEMAN, PUNISH)));agentViolatesObligation(WOMAN, OBLIGATION)))).
- %
- tell34:4 not_true_t(maleficiary,PUNISH,WOMAN):-possible_t(maleficiary,PUNISH,WOMAN),isa(PUNISH,Punishing),true_t(performedBy,PUNISH,THEMAN),true_t(beliefs,THEMAN,agentViolatesObligation(WOMAN,OBLIGATION)),not_true_t(beliefs,THEMAN, (not_call_builtin(skolem,OBLIGATION,skUnkArg2ofAgentviolatesobligationFn(WOMAN,THEMAN,PUNISH));true_t(agentViolatesObligation,WOMAN,OBLIGATION))).not_true_t(performedBy,
- PUNISH,
- THEMAN) :-
- w_infer_by(tell34:5),
- poss(performedBy(PUNISH, THEMAN)),
- isa(PUNISH, 'Punishing'),
- maleficiary(PUNISH, WOMAN),
- beliefs(THEMAN, agentViolatesObligation(WOMAN, OBLIGATION)),
- not(beliefs(THEMAN,
- (not(skolem(OBLIGATION, skUnkArg2ofAgentviolatesobligationFn(WOMAN, THEMAN, PUNISH)));agentViolatesObligation(WOMAN, OBLIGATION)))).
- %
- tell34:5 not_true_t(performedBy,PUNISH,THEMAN):-possible_t(performedBy,PUNISH,THEMAN),isa(PUNISH,Punishing),true_t(maleficiary,PUNISH,WOMAN),true_t(beliefs,THEMAN,agentViolatesObligation(WOMAN,OBLIGATION)),not_true_t(beliefs,THEMAN, (not_call_builtin(skolem,OBLIGATION,skUnkArg2ofAgentviolatesobligationFn(WOMAN,THEMAN,PUNISH));true_t(agentViolatesObligation,WOMAN,OBLIGATION))).true_t(beliefs,
- THEMAN,
- (not_call_builtin(skolem, OBLIGATION, skUnkArg2ofAgentviolatesobligationFn(WOMAN, THEMAN, PUNISH));true_t(agentViolatesObligation, WOMAN, OBLIGATION))) :-
- w_infer_by(tell34:6),
- beliefs(THEMAN, agentViolatesObligation(WOMAN, OBLIGATION)),
- isa(PUNISH, 'Punishing'),
- performedBy(PUNISH, THEMAN),
- maleficiary(PUNISH, WOMAN).
- %
- tell34:6 true_t(beliefs,THEMAN, (not_call_builtin(skolem,OBLIGATION,skUnkArg2ofAgentviolatesobligationFn(WOMAN,THEMAN,PUNISH));true_t(agentViolatesObligation,WOMAN,OBLIGATION))):-true_t(beliefs,THEMAN,agentViolatesObligation(WOMAN,OBLIGATION)),isa(PUNISH,Punishing),true_t(performedBy,PUNISH,THEMAN),true_t(maleficiary,PUNISH,WOMAN).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ '\n(implies \n (and \n (isa ?PUNISH Punishing) \n (performedBy ?PUNISH ?THEMAN) \n (maleficiary ?PUNISH ?WOMAN)) \n (beliefs ?THEMAN \n (thereExists ?OBLIGATION \n (agentViolatesObligation ?WOMAN ?OBLIGATION))))'
- ].
- pkif :-
- [ '\n(implies \n (and \n (isa ?PUNISH Punishing) \n (performedBy ?PUNISH ?THEMAN) \n (maleficiary ?PUNISH ?WOMAN)) \n (beliefs ?THEMAN \n (thereExists ?OBLIGATION \n (agentViolatesObligation ?WOMAN ?OBLIGATION))))'
- ].
- cnf :-
- '\n(implies \n (and \n (isa ?PUNISH Punishing) \n (performedBy ?PUNISH ?THEMAN) \n (maleficiary ?PUNISH ?WOMAN)) \n (beliefs ?THEMAN \n (thereExists ?OBLIGATION \n (agentViolatesObligation ?WOMAN ?OBLIGATION))))'.
- %
- tell35:0
- (implies
- (and
- (isa ?PUNISH Punishing)
- (performedBy ?PUNISH ?THEMAN)
- (maleficiary ?PUNISH ?WOMAN))
- (beliefs ?THEMAN
- (thereExists ?OBLIGATION
- (agentViolatesObligation ?WOMAN ?OBLIGATION)))).
- tell35:0
- (implies
- (and
- (isa ?PUNISH Punishing)
- (performedBy ?PUNISH ?THEMAN)
- (maleficiary ?PUNISH ?WOMAN))
- (beliefs ?THEMAN
- (thereExists ?OBLIGATION
- (agentViolatesObligation ?WOMAN ?OBLIGATION)))).pttp :-
- [ ('\n(implies \n (and \n (isa ?PUNISH Punishing) \n (performedBy ?PUNISH ?THEMAN) \n (maleficiary ?PUNISH ?WOMAN)) \n (beliefs ?THEMAN \n (thereExists ?OBLIGATION \n (agentViolatesObligation ?WOMAN ?OBLIGATION))))':-true)
- ].
- %
- '\n(implies \n (and \n (isa ?PUNISH Punishing) \n (performedBy ?PUNISH ?THEMAN) \n (maleficiary ?PUNISH ?WOMAN)) \n (beliefs ?THEMAN \n (thereExists ?OBLIGATION \n (agentViolatesObligation ?WOMAN ?OBLIGATION))))' :-
- w_infer_by(tell35:0),
- [].
- %
- tell35:0
- (implies
- (and
- (isa ?PUNISH Punishing)
- (performedBy ?PUNISH ?THEMAN)
- (maleficiary ?PUNISH ?WOMAN))
- (beliefs ?THEMAN
- (thereExists ?OBLIGATION
- (agentViolatesObligation ?WOMAN ?OBLIGATION)))):-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ all[MORAL_SHAMING],
- [ all[THEMAN],
- [ implies,
- [ isa(MORAL_SHAMING, 'Shaming'),
- performedBy(MORAL_SHAMING, THEMAN),
- obligatedAgents('TheGoldenRule', THEMAN)
- ],
- (=>),
- [agentViolatesObligation(THEMAN, 'TheGoldenRule')]
- ]
- ]
- ].
- pkif :-
- [ implies,
- [poss(KB, agentViolatesObligation(THEMAN, 'TheGoldenRule'))],
- (=>),
- [ implies,
- [poss(KB, obligatedAgents('TheGoldenRule', THEMAN))],
- (=>),
- [ implies,
- [poss(KB, performedBy(MORAL_SHAMING, THEMAN))],
- (=>),
- [ all[MORAL_SHAMING],
- [ all[THEMAN],
- [ implies,
- [ isa(MORAL_SHAMING, 'Shaming'),
- performedBy(MORAL_SHAMING, THEMAN),
- obligatedAgents('TheGoldenRule', THEMAN)
- ],
- (=>),
- [agentViolatesObligation(THEMAN, 'TheGoldenRule')]
- ]
- ]
- ]
- ]
- ]
- ].
- cnf :-
- ( not(possible_t(agentViolatesObligation(THEMAN, 'TheGoldenRule')))
- ; not(possible_t(obligatedAgents('TheGoldenRule', THEMAN)))
- ; not(possible_t(performedBy(MORAL_SHAMING, THEMAN)))
- ; agentViolatesObligation(THEMAN, 'TheGoldenRule')
- ; not(isa(MORAL_SHAMING, 'Shaming'))
- ; not(performedBy(MORAL_SHAMING, THEMAN))
- ; not(obligatedAgents('TheGoldenRule', THEMAN))
- ).
- %
- tell36:0 not_possible_t(agentViolatesObligation,THEMAN,TheGoldenRule);not_possible_t(obligatedAgents,TheGoldenRule,THEMAN);not_possible_t(performedBy,MORAL_SHAMING,THEMAN);true_t(agentViolatesObligation,THEMAN,TheGoldenRule);not_isa(MORAL_SHAMING,Shaming);not_true_t(performedBy,MORAL_SHAMING,THEMAN);not_true_t(obligatedAgents,TheGoldenRule,THEMAN).pttp :-
- [ (not_isa(MORAL_SHAMING, 'Shaming'):-possible_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), possible_t(obligatedAgents, 'TheGoldenRule', THEMAN), possible_t(performedBy, MORAL_SHAMING, THEMAN), not_true_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), true_t(performedBy, MORAL_SHAMING, THEMAN), true_t(obligatedAgents, 'TheGoldenRule', THEMAN)),
- (not_possible_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'):-possible_t(obligatedAgents, 'TheGoldenRule', THEMAN), possible_t(performedBy, MORAL_SHAMING, THEMAN), not_true_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), isa(MORAL_SHAMING, 'Shaming'), true_t(performedBy, MORAL_SHAMING, THEMAN), true_t(obligatedAgents, 'TheGoldenRule', THEMAN)),
- (not_possible_t(obligatedAgents, 'TheGoldenRule', THEMAN):-possible_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), possible_t(performedBy, MORAL_SHAMING, THEMAN), not_true_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), isa(MORAL_SHAMING, 'Shaming'), true_t(performedBy, MORAL_SHAMING, THEMAN), true_t(obligatedAgents, 'TheGoldenRule', THEMAN)),
- (not_possible_t(performedBy, MORAL_SHAMING, THEMAN):-possible_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), possible_t(obligatedAgents, 'TheGoldenRule', THEMAN), not_true_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), isa(MORAL_SHAMING, 'Shaming'), true_t(performedBy, MORAL_SHAMING, THEMAN), true_t(obligatedAgents, 'TheGoldenRule', THEMAN)),
- (not_true_t(obligatedAgents, 'TheGoldenRule', THEMAN):-possible_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), possible_t(obligatedAgents, 'TheGoldenRule', THEMAN), possible_t(performedBy, MORAL_SHAMING, THEMAN), not_true_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), isa(MORAL_SHAMING, 'Shaming'), true_t(performedBy, MORAL_SHAMING, THEMAN)),
- (not_true_t(performedBy, MORAL_SHAMING, THEMAN):-possible_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), possible_t(obligatedAgents, 'TheGoldenRule', THEMAN), possible_t(performedBy, MORAL_SHAMING, THEMAN), not_true_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), isa(MORAL_SHAMING, 'Shaming'), true_t(obligatedAgents, 'TheGoldenRule', THEMAN)),
- (true_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'):-possible_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), possible_t(obligatedAgents, 'TheGoldenRule', THEMAN), possible_t(performedBy, MORAL_SHAMING, THEMAN), isa(MORAL_SHAMING, 'Shaming'), true_t(performedBy, MORAL_SHAMING, THEMAN), true_t(obligatedAgents, 'TheGoldenRule', THEMAN))
- ].
- %
- not_isa(MORAL_SHAMING, 'Shaming') :-
- w_infer_by(tell36:0),
- not(agentViolatesObligation(THEMAN, 'TheGoldenRule')),
- performedBy(MORAL_SHAMING, THEMAN),
- obligatedAgents('TheGoldenRule', THEMAN).
- %
- tell36:0 not_isa(MORAL_SHAMING,Shaming):-not_true_t(agentViolatesObligation,THEMAN,TheGoldenRule),true_t(performedBy,MORAL_SHAMING,THEMAN),true_t(obligatedAgents,TheGoldenRule,THEMAN).not_possible_t(agentViolatesObligation,
- THEMAN,
- 'TheGoldenRule') :-
- w_infer_by(tell36:1),
- not(agentViolatesObligation(THEMAN, 'TheGoldenRule')),
- obligatedAgents('TheGoldenRule', THEMAN),
- isa(MORAL_SHAMING, 'Shaming'),
- performedBy(MORAL_SHAMING, THEMAN).
- %
- tell36:1 not_possible_t(agentViolatesObligation,THEMAN,TheGoldenRule):-not_true_t(agentViolatesObligation,THEMAN,TheGoldenRule),true_t(obligatedAgents,TheGoldenRule,THEMAN),isa(MORAL_SHAMING,Shaming),true_t(performedBy,MORAL_SHAMING,THEMAN).not_possible_t(obligatedAgents,
- 'TheGoldenRule',
- THEMAN) :-
- w_infer_by(tell36:2),
- not(agentViolatesObligation(THEMAN, 'TheGoldenRule')),
- obligatedAgents('TheGoldenRule', THEMAN),
- isa(MORAL_SHAMING, 'Shaming'),
- performedBy(MORAL_SHAMING, THEMAN).
- %
- tell36:2 not_possible_t(obligatedAgents,TheGoldenRule,THEMAN):-not_true_t(agentViolatesObligation,THEMAN,TheGoldenRule),true_t(obligatedAgents,TheGoldenRule,THEMAN),isa(MORAL_SHAMING,Shaming),true_t(performedBy,MORAL_SHAMING,THEMAN).not_possible_t(performedBy,
- MORAL_SHAMING,
- THEMAN) :-
- w_infer_by(tell36:3),
- not(agentViolatesObligation(THEMAN, 'TheGoldenRule')),
- isa(MORAL_SHAMING, 'Shaming'),
- performedBy(MORAL_SHAMING, THEMAN),
- obligatedAgents('TheGoldenRule', THEMAN).
- %
- tell36:3 not_possible_t(performedBy,MORAL_SHAMING,THEMAN):-not_true_t(agentViolatesObligation,THEMAN,TheGoldenRule),isa(MORAL_SHAMING,Shaming),true_t(performedBy,MORAL_SHAMING,THEMAN),true_t(obligatedAgents,TheGoldenRule,THEMAN).not_true_t(obligatedAgents,
- 'TheGoldenRule',
- THEMAN) :-
- w_infer_by(tell36:4),
- poss(obligatedAgents('TheGoldenRule', THEMAN)),
- not(agentViolatesObligation(THEMAN, 'TheGoldenRule')),
- isa(MORAL_SHAMING, 'Shaming'),
- performedBy(MORAL_SHAMING, THEMAN).
- %
- tell36:4 not_true_t(obligatedAgents,TheGoldenRule,THEMAN):-possible_t(obligatedAgents,TheGoldenRule,THEMAN),not_true_t(agentViolatesObligation,THEMAN,TheGoldenRule),isa(MORAL_SHAMING,Shaming),true_t(performedBy,MORAL_SHAMING,THEMAN).not_true_t(performedBy,
- MORAL_SHAMING,
- THEMAN) :-
- w_infer_by(tell36:5),
- poss(performedBy(MORAL_SHAMING, THEMAN)),
- not(agentViolatesObligation(THEMAN, 'TheGoldenRule')),
- isa(MORAL_SHAMING, 'Shaming'),
- obligatedAgents('TheGoldenRule', THEMAN).
- %
- tell36:5 not_true_t(performedBy,MORAL_SHAMING,THEMAN):-possible_t(performedBy,MORAL_SHAMING,THEMAN),not_true_t(agentViolatesObligation,THEMAN,TheGoldenRule),isa(MORAL_SHAMING,Shaming),true_t(obligatedAgents,TheGoldenRule,THEMAN).true_t(agentViolatesObligation,
- THEMAN,
- 'TheGoldenRule') :-
- w_infer_by(tell36:6),
- poss(agentViolatesObligation(THEMAN, 'TheGoldenRule')),
- obligatedAgents('TheGoldenRule', THEMAN),
- isa(MORAL_SHAMING, 'Shaming'),
- performedBy(MORAL_SHAMING, THEMAN).
- %
- tell36:6 true_t(agentViolatesObligation,THEMAN,TheGoldenRule):-possible_t(agentViolatesObligation,THEMAN,TheGoldenRule),true_t(obligatedAgents,TheGoldenRule,THEMAN),isa(MORAL_SHAMING,Shaming),true_t(performedBy,MORAL_SHAMING,THEMAN).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ '\n(implies (and (isa ?MORAL-SHAMING Shaming) (performedBy ?MORAL-SHAMING ?THEMAN) (obligatedAgents TheGoldenRule ?THEMAN)) (agentViolatesObligation ?THEMAN TheGoldenRule))\n'
- ].
- pkif :-
- [ '\n(implies (and (isa ?MORAL-SHAMING Shaming) (performedBy ?MORAL-SHAMING ?THEMAN) (obligatedAgents TheGoldenRule ?THEMAN)) (agentViolatesObligation ?THEMAN TheGoldenRule))\n'
- ].
- cnf :-
- '\n(implies (and (isa ?MORAL-SHAMING Shaming) (performedBy ?MORAL-SHAMING ?THEMAN) (obligatedAgents TheGoldenRule ?THEMAN)) (agentViolatesObligation ?THEMAN TheGoldenRule))\n'.
- %
- tell37:0
- (implies (and (isa ?MORAL-SHAMING Shaming) (performedBy ?MORAL-SHAMING ?THEMAN) (obligatedAgents TheGoldenRule ?THEMAN)) (agentViolatesObligation ?THEMAN TheGoldenRule))
- .
- tell37:0
- (implies (and (isa ?MORAL-SHAMING Shaming) (performedBy ?MORAL-SHAMING ?THEMAN) (obligatedAgents TheGoldenRule ?THEMAN)) (agentViolatesObligation ?THEMAN TheGoldenRule))
- .pttp :-
- [ ('\n(implies (and (isa ?MORAL-SHAMING Shaming) (performedBy ?MORAL-SHAMING ?THEMAN) (obligatedAgents TheGoldenRule ?THEMAN)) (agentViolatesObligation ?THEMAN TheGoldenRule))\n':-true)
- ].
- %
- '\n(implies (and (isa ?MORAL-SHAMING Shaming) (performedBy ?MORAL-SHAMING ?THEMAN) (obligatedAgents TheGoldenRule ?THEMAN)) (agentViolatesObligation ?THEMAN TheGoldenRule))\n' :-
- w_infer_by(tell37:0),
- [].
- %
- tell37:0
- (implies (and (isa ?MORAL-SHAMING Shaming) (performedBy ?MORAL-SHAMING ?THEMAN) (obligatedAgents TheGoldenRule ?THEMAN)) (agentViolatesObligation ?THEMAN TheGoldenRule))
- :-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ ex[THEMAN],
- [ implies,
- [ ex[MORAL_SHAMING],
- [ isa(MORAL_SHAMING, 'Shaming'),
- performedBy(MORAL_SHAMING, THEMAN),
- obligatedAgents('TheGoldenRule', THEMAN)
- ]
- ],
- (=>),
- [agentViolatesObligation(THEMAN, 'TheGoldenRule')]
- ]
- ].
- pkif :-
- [ implies,
- [poss(KB, agentViolatesObligation(THEMAN, 'TheGoldenRule'))],
- (=>),
- [ implies,
- [poss(KB, obligatedAgents('TheGoldenRule', THEMAN))],
- (=>),
- [ implies,
- [poss(KB, performedBy(MORAL_SHAMING, THEMAN))],
- (=>),
- [ ex[THEMAN],
- [ implies,
- [ ex[MORAL_SHAMING],
- [ isa(MORAL_SHAMING, 'Shaming'),
- performedBy(MORAL_SHAMING, THEMAN),
- obligatedAgents('TheGoldenRule', THEMAN)
- ]
- ],
- (=>),
- [agentViolatesObligation(THEMAN, 'TheGoldenRule')]
- ]
- ]
- ]
- ]
- ].
- cnf :-
- ( not(possible_t(agentViolatesObligation(THEMAN, 'TheGoldenRule')))
- ; not(possible_t(obligatedAgents('TheGoldenRule', THEMAN)))
- ; not(possible_t(performedBy(MORAL_SHAMING, THEMAN)))
- ; not(skolem(THEMAN,
- skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn))
- ; agentViolatesObligation(THEMAN, 'TheGoldenRule')
- ; not(isa(MORAL_SHAMING, 'Shaming'))
- ; not(performedBy(MORAL_SHAMING, THEMAN))
- ; not(obligatedAgents('TheGoldenRule', THEMAN))
- ).
- %
- tell38:0 not_possible_t(agentViolatesObligation,THEMAN,TheGoldenRule);not_possible_t(obligatedAgents,TheGoldenRule,THEMAN);not_possible_t(performedBy,MORAL_SHAMING,THEMAN);not_call_builtin(skolem,THEMAN,skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn);true_t(agentViolatesObligation,THEMAN,TheGoldenRule);not_isa(MORAL_SHAMING,Shaming);not_true_t(performedBy,MORAL_SHAMING,THEMAN);not_true_t(obligatedAgents,TheGoldenRule,THEMAN).pttp :-
- [ (not_isa(MORAL_SHAMING, 'Shaming'):-possible_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), possible_t(obligatedAgents, 'TheGoldenRule', THEMAN), possible_t(performedBy, MORAL_SHAMING, THEMAN), call_builtin(skolem, THEMAN, skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn), not_true_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), true_t(performedBy, MORAL_SHAMING, THEMAN), true_t(obligatedAgents, 'TheGoldenRule', THEMAN)),
- (not_call_builtin(skolem, THEMAN, skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn):-possible_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), possible_t(obligatedAgents, 'TheGoldenRule', THEMAN), possible_t(performedBy, MORAL_SHAMING, THEMAN), not_true_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), isa(MORAL_SHAMING, 'Shaming'), true_t(performedBy, MORAL_SHAMING, THEMAN), true_t(obligatedAgents, 'TheGoldenRule', THEMAN)),
- (not_possible_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'):-possible_t(obligatedAgents, 'TheGoldenRule', THEMAN), possible_t(performedBy, MORAL_SHAMING, THEMAN), call_builtin(skolem, THEMAN, skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn), not_true_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), isa(MORAL_SHAMING, 'Shaming'), true_t(performedBy, MORAL_SHAMING, THEMAN), true_t(obligatedAgents, 'TheGoldenRule', THEMAN)),
- (not_possible_t(obligatedAgents, 'TheGoldenRule', THEMAN):-possible_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), possible_t(performedBy, MORAL_SHAMING, THEMAN), call_builtin(skolem, THEMAN, skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn), not_true_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), isa(MORAL_SHAMING, 'Shaming'), true_t(performedBy, MORAL_SHAMING, THEMAN), true_t(obligatedAgents, 'TheGoldenRule', THEMAN)),
- (not_possible_t(performedBy, MORAL_SHAMING, THEMAN):-possible_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), possible_t(obligatedAgents, 'TheGoldenRule', THEMAN), call_builtin(skolem, THEMAN, skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn), not_true_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), isa(MORAL_SHAMING, 'Shaming'), true_t(performedBy, MORAL_SHAMING, THEMAN), true_t(obligatedAgents, 'TheGoldenRule', THEMAN)),
- (not_true_t(obligatedAgents, 'TheGoldenRule', THEMAN):-possible_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), possible_t(obligatedAgents, 'TheGoldenRule', THEMAN), possible_t(performedBy, MORAL_SHAMING, THEMAN), call_builtin(skolem, THEMAN, skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn), not_true_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), isa(MORAL_SHAMING, 'Shaming'), true_t(performedBy, MORAL_SHAMING, THEMAN)),
- (not_true_t(performedBy, MORAL_SHAMING, THEMAN):-possible_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), possible_t(obligatedAgents, 'TheGoldenRule', THEMAN), possible_t(performedBy, MORAL_SHAMING, THEMAN), call_builtin(skolem, THEMAN, skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn), not_true_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), isa(MORAL_SHAMING, 'Shaming'), true_t(obligatedAgents, 'TheGoldenRule', THEMAN)),
- (true_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'):-possible_t(agentViolatesObligation, THEMAN, 'TheGoldenRule'), possible_t(obligatedAgents, 'TheGoldenRule', THEMAN), possible_t(performedBy, MORAL_SHAMING, THEMAN), call_builtin(skolem, THEMAN, skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn), isa(MORAL_SHAMING, 'Shaming'), true_t(performedBy, MORAL_SHAMING, THEMAN), true_t(obligatedAgents, 'TheGoldenRule', THEMAN))
- ].
- %
- not_isa(MORAL_SHAMING, 'Shaming') :-
- w_infer_by(tell38:0),
- skolem(THEMAN,
- skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn),
- not(agentViolatesObligation(THEMAN, 'TheGoldenRule')),
- performedBy(MORAL_SHAMING, THEMAN),
- obligatedAgents('TheGoldenRule', THEMAN).
- %
- tell38:0 not_isa(MORAL_SHAMING,Shaming):-call_builtin(skolem,THEMAN,skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn),not_true_t(agentViolatesObligation,THEMAN,TheGoldenRule),true_t(performedBy,MORAL_SHAMING,THEMAN),true_t(obligatedAgents,TheGoldenRule,THEMAN).not_call_builtin(skolem,
- THEMAN,
- skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn) :-
- w_infer_by(tell38:1),
- not(agentViolatesObligation(THEMAN, 'TheGoldenRule')),
- obligatedAgents('TheGoldenRule', THEMAN),
- isa(MORAL_SHAMING, 'Shaming'),
- performedBy(MORAL_SHAMING, THEMAN).
- %
- tell38:1 not_call_builtin(skolem,THEMAN,skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn):-not_true_t(agentViolatesObligation,THEMAN,TheGoldenRule),true_t(obligatedAgents,TheGoldenRule,THEMAN),isa(MORAL_SHAMING,Shaming),true_t(performedBy,MORAL_SHAMING,THEMAN).not_possible_t(agentViolatesObligation,
- THEMAN,
- 'TheGoldenRule') :-
- w_infer_by(tell38:2),
- skolem(THEMAN,
- skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn),
- not(agentViolatesObligation(THEMAN, 'TheGoldenRule')),
- obligatedAgents('TheGoldenRule', THEMAN),
- isa(MORAL_SHAMING, 'Shaming'),
- performedBy(MORAL_SHAMING, THEMAN).
- %
- tell38:2 not_possible_t(agentViolatesObligation,THEMAN,TheGoldenRule):-call_builtin(skolem,THEMAN,skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn),not_true_t(agentViolatesObligation,THEMAN,TheGoldenRule),true_t(obligatedAgents,TheGoldenRule,THEMAN),isa(MORAL_SHAMING,Shaming),true_t(performedBy,MORAL_SHAMING,THEMAN).not_possible_t(obligatedAgents,
- 'TheGoldenRule',
- THEMAN) :-
- w_infer_by(tell38:3),
- skolem(THEMAN,
- skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn),
- not(agentViolatesObligation(THEMAN, 'TheGoldenRule')),
- obligatedAgents('TheGoldenRule', THEMAN),
- isa(MORAL_SHAMING, 'Shaming'),
- performedBy(MORAL_SHAMING, THEMAN).
- %
- tell38:3 not_possible_t(obligatedAgents,TheGoldenRule,THEMAN):-call_builtin(skolem,THEMAN,skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn),not_true_t(agentViolatesObligation,THEMAN,TheGoldenRule),true_t(obligatedAgents,TheGoldenRule,THEMAN),isa(MORAL_SHAMING,Shaming),true_t(performedBy,MORAL_SHAMING,THEMAN).not_possible_t(performedBy,
- MORAL_SHAMING,
- THEMAN) :-
- w_infer_by(tell38:4),
- skolem(THEMAN,
- skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn),
- not(agentViolatesObligation(THEMAN, 'TheGoldenRule')),
- isa(MORAL_SHAMING, 'Shaming'),
- performedBy(MORAL_SHAMING, THEMAN),
- obligatedAgents('TheGoldenRule', THEMAN).
- %
- tell38:4 not_possible_t(performedBy,MORAL_SHAMING,THEMAN):-call_builtin(skolem,THEMAN,skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn),not_true_t(agentViolatesObligation,THEMAN,TheGoldenRule),isa(MORAL_SHAMING,Shaming),true_t(performedBy,MORAL_SHAMING,THEMAN),true_t(obligatedAgents,TheGoldenRule,THEMAN).not_true_t(obligatedAgents,
- 'TheGoldenRule',
- THEMAN) :-
- w_infer_by(tell38:5),
- poss(obligatedAgents('TheGoldenRule', THEMAN)),
- skolem(THEMAN,
- skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn),
- not(agentViolatesObligation(THEMAN, 'TheGoldenRule')),
- isa(MORAL_SHAMING, 'Shaming'),
- performedBy(MORAL_SHAMING, THEMAN).
- %
- tell38:5 not_true_t(obligatedAgents,TheGoldenRule,THEMAN):-possible_t(obligatedAgents,TheGoldenRule,THEMAN),call_builtin(skolem,THEMAN,skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn),not_true_t(agentViolatesObligation,THEMAN,TheGoldenRule),isa(MORAL_SHAMING,Shaming),true_t(performedBy,MORAL_SHAMING,THEMAN).not_true_t(performedBy,
- MORAL_SHAMING,
- THEMAN) :-
- w_infer_by(tell38:6),
- poss(performedBy(MORAL_SHAMING, THEMAN)),
- skolem(THEMAN,
- skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn),
- not(agentViolatesObligation(THEMAN, 'TheGoldenRule')),
- isa(MORAL_SHAMING, 'Shaming'),
- obligatedAgents('TheGoldenRule', THEMAN).
- %
- tell38:6 not_true_t(performedBy,MORAL_SHAMING,THEMAN):-possible_t(performedBy,MORAL_SHAMING,THEMAN),call_builtin(skolem,THEMAN,skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn),not_true_t(agentViolatesObligation,THEMAN,TheGoldenRule),isa(MORAL_SHAMING,Shaming),true_t(obligatedAgents,TheGoldenRule,THEMAN).true_t(agentViolatesObligation,
- THEMAN,
- 'TheGoldenRule') :-
- w_infer_by(tell38:7),
- poss(agentViolatesObligation(THEMAN, 'TheGoldenRule')),
- skolem(THEMAN,
- skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn),
- obligatedAgents('TheGoldenRule', THEMAN),
- isa(MORAL_SHAMING, 'Shaming'),
- performedBy(MORAL_SHAMING, THEMAN).
- %
- tell38:7 true_t(agentViolatesObligation,THEMAN,TheGoldenRule):-possible_t(agentViolatesObligation,THEMAN,TheGoldenRule),call_builtin(skolem,THEMAN,skArg1ofAgentviolatesobligationUnkArg2ofPerformedbyObligatedagentsFn),true_t(obligatedAgents,TheGoldenRule,THEMAN),isa(MORAL_SHAMING,Shaming),true_t(performedBy,MORAL_SHAMING,THEMAN).
- true
- % msg(error, must_failed_F__A__I__L_(user:param_default_value(search, _))).
- %
- % not(tlbugger:ifCanTrace(user:param_default_value(search, _))).
- %
- skipDmsg(nf(noParent(52,46,[max_depth(5000),numbervars(safe),show([has_alternatives,level,context_module,goal,clause])])))
- (0)[system] system:'$c_call_prolog'. no(clause) *(1)[thread_httpd] thread_httpd:http_worker([queue('httpd@3020'),tcp_socket('$socket'(1)),workers(16)]). % thread_httpd.pl:516: (2)[system] system:catch(thread_httpd:http_process(user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0),[pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),timeout(60),peer(ip(73,164,203,95)),protocol(http)]),_,thread_httpd:true). % init.pl:274: (3)[thread_httpd] thread_httpd:http_process(user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0),[pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),timeout(60),peer(ip(73,164,203,95)),protocol(http)]). % thread_httpd.pl:711: (4)[httpd_wrapper] httpd_wrapper:http_wrapper(user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0),_,[request([protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),timeout(60),peer(ip(73,164,203,95)),protocol(http)]). % http_wrapper.pl:93: (5)[httpd_wrapper] httpd_wrapper:handler_with_output_to(user:http_dispatch,37,[protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],<stream>(0x7fec3c162f80),_). % http_wrapper.pl:287: *(6)[httpd_wrapper] httpd_wrapper:handler_with_output_to(user:http_dispatch,37,[protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],current_output,_). % http_wrapper.pl:279: (7)[system] system:catch(httpd_wrapper:call_handler(user:http_dispatch,37,[protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),_,httpd_wrapper:true). % init.pl:274: (8)[httpd_wrapper] httpd_wrapper:call_handler(user:http_dispatch,37,[protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]). % http_wrapper.pl:295: (9)[http_dispatch] http_dispatch:http_dispatch([session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]). % http_dispatch.pl:318: (10)[http_dispatch] http_dispatch:action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked]). % http_dispatch.pl:596: (11)[http_dispatch] http_dispatch:spawn_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked]). % http_dispatch.pl:607: (12)[http_dispatch] http_dispatch:time_limit_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked]). % http_dispatch.pl:616: (13)[time] time:call_with_time_limit(300,http_dispatch:call_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked])). % time.pl:128: (14)[system] system:setup_call_cleanup(time:alarm(300,time_limit_exceeded(300),'$alarm'(35163140388208),[install(false)]),time:run_alarm_goal('$alarm'(35163140388208),http_dispatch:call_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked])),time:remove_alarm_notrace('$alarm'(35163140388208))). % init.pl:314: (15)[system] system:setup_call_catcher_cleanup(time:alarm(300,time_limit_exceeded(300),'$alarm'(35163140388208),[install(false)]),time:run_alarm_goal('$alarm'(35163140388208),http_dispatch:call_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked])),_,time:remove_alarm_notrace('$alarm'(35163140388208))). % init.pl:310: (16)[time] time:run_alarm_goal('$alarm'(35163140388208),http_dispatch:call_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked])). % time.pl:137: (17)[http_dispatch] http_dispatch:call_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked]). % http_dispatch.pl:635: *(18)[http_dispatch] http_dispatch:call_action(user:handler_logicmoo_cyclone,[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]). % http_dispatch.pl:641: (19)[user] handler_logicmoo_cyclone([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]). % logicmoo_i_www.pl:142: (20)[user] system:notrace(call(handler_logicmoo_cyclone_1,[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])). no(clause) (21)[system] system:'$c_call_prolog'. no(clause) (22)[system] system:call(user:handler_logicmoo_cyclone_1,[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]). % init.pl:215: (23)[user] handler_logicmoo_cyclone_1([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]). % logicmoo_i_www.pl:191: (25)[user] must_det_lm(user, (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(U30/V30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(U30/V30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(U30/V30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(U30/V30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)). % logicmoo_util_bugger.pl:535: (26)[user] must(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(S30/T30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(S30/T30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(S30/T30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(S30/T30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)). % logicmoo_util_bugger.pl:594: *(27)[user] system:'<meta-call>'((catchvv(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output),R30, (dumpST,dmsg(error,must_xI__xI__xI__xI__xI_(R30,user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output))),set_prolog_flag(debug_on_error,true),ignore_each((rtrace(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)),stop_rtrace,trace,dtrace(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)),badfood(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output))))))*->true;dumpST,ignore_each((trace,dtrace(must_failed_F__A__I__L_(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)),user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)),badfood(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P30/Q30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)))))). no(clause) (29)[system] system:catch(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M30/N30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M30/N30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M30/N30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M30/N30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output),O30,logicmoo_util_bugger_catch: (bubbled_ex_check(O30),user: (dumpST,dmsg(error,must_xI__xI__xI__xI__xI_(O30,user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M30/N30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M30/N30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M30/N30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M30/N30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output))),set_prolog_flag(debug_on_error,true),ignore_each((rtrace(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M30/N30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M30/N30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M30/N30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M30/N30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)),stop_rtrace,trace,dtrace(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M30/N30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M30/N30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M30/N30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M30/N30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)),badfood(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M30/N30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M30/N30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M30/N30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M30/N30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output))))))). % init.pl:274: (30)[user] system:'<meta-call>'(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(K30/L30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(K30/L30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(K30/L30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(K30/L30,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)). no(clause) (31)[user] system:notrace(logOnError(edit_term)). no(clause) (32)[system] system:'$c_call_prolog'. no(clause) (35)[user] prolog_ecall_fa(0,user:logOnError0,edit_term,0,user:edit_term). % logicmoo_util_bugger.pl:1654: (38)[system] system:catch(user:edit_term,J30,logicmoo_util_bugger_catch: (bubbled_ex_check(J30),user:dmsg(logOnError(J30,user:edit_term)))). % init.pl:274: *(39)[user] edit_term. % logicmoo_i_www.pl:293: (40)[user] get_nv(search,_). % logicmoo_i_www.pl:165: (41)[user] must(user:param_default_value(search,'VAR_______________________x0BADF00D'(0))). % logicmoo_util_bugger.pl:594: *(44)[system] system:ignore('<garbage_collected>'). % init.pl:257: (45)[user] system:'<meta-call>'('<garbage_collected>'). no(clause) (46)[user] dtrace(must_failed_F__A__I__L_(user:param_default_value(search,'VAR_______________________x0BADF00D'(0))),user:param_default_value(search,'VAR_______________________x0BADF00D'(0))). % logicmoo_util_bugger.pl:2172: (47)[user] dtrace(user:param_default_value(search,'VAR_______________________x0BADF00D'(0))). % logicmoo_util_bugger.pl:2175: (48)[user] badfood(user:param_default_value(search,'VAR_______________________x0BADF00D'(0))). % logicmoo_util_bugger.pl:575: (49)[user] dumpST. % logicmoo_util_bugger.pl:1840: *(50)[system] system:ignore(user:catch(with_assertions(tlbugger:skipDmsg,dumpST9),I30,writeq(I30))). % init.pl:257: (51)[system] system:catch(user:with_assertions(tlbugger:skipDmsg,dumpST9),H30,user:writeq(H30)). % init.pl:274: (52)[user] with_assertions(tlbugger:skipDmsg,user:dumpST9). % logicmoo_util_with_assertions.pl:39: (53)[system] system:setup_call_cleanup(user:hotrace(asserta(tlbugger:skipDmsg,<clause>(0x7fec3c1700e0))),user:dumpST9,user:erase_safe(tlbugger:skipDmsg,<clause>(0x7fec3c1700e0))). % init.pl:314: (54)[system] system:setup_call_catcher_cleanup(user:hotrace(asserta(tlbugger:skipDmsg,<clause>(0x7fec3c1700e0))),user:dumpST9,_,user:erase_safe(tlbugger:skipDmsg,<clause>(0x7fec3c1700e0))). % init.pl:310: (55)[user] dumpST9. % logicmoo_util_bugger.pl:1852: (56)[user] hotrace(user: (prolog_current_frame(1392),dumpST2(1392,5000))). % logicmoo_util_bugger.pl:242: (57)[system] system:call_cleanup(user: (prolog_current_frame(1392),dumpST2(1392,5000)),user: ('$visible'(_,271),trace)). % init.pl:317: (58)[system] system:setup_call_catcher_cleanup(system:true,user: (prolog_current_frame(1392),dumpST2(1392,5000)),_,user: ('$visible'(_,271),trace)). % init.pl:310: (59)[user] system:'<meta-call>'(user: (prolog_current_frame(1392),dumpST2(1392,5000))). no(clause)
- skipDmsg(nf(noParent(54,46,[max_depth(5000),numbervars(safe),show([has_alternatives,level,context_module,goal,clause])])))
- (0)[system] system:'$c_call_prolog'. no(clause) *(1)[thread_httpd] thread_httpd:http_worker([queue('httpd@3020'),tcp_socket('$socket'(1)),workers(16)]). % thread_httpd.pl:516: (2)[system] system:catch(thread_httpd:http_process(user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0),[pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),timeout(60),peer(ip(73,164,203,95)),protocol(http)]),_,thread_httpd:true). % init.pl:274: (3)[thread_httpd] thread_httpd:http_process(user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0),[pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),timeout(60),peer(ip(73,164,203,95)),protocol(http)]). % thread_httpd.pl:711: (4)[httpd_wrapper] httpd_wrapper:http_wrapper(user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0),_,[request([protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),timeout(60),peer(ip(73,164,203,95)),protocol(http)]). % http_wrapper.pl:93: (5)[httpd_wrapper] httpd_wrapper:handler_with_output_to(user:http_dispatch,37,[protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],<stream>(0x7fec3c162f80),_). % http_wrapper.pl:287: *(6)[httpd_wrapper] httpd_wrapper:handler_with_output_to(user:http_dispatch,37,[protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],current_output,_). % http_wrapper.pl:279: (7)[system] system:catch(httpd_wrapper:call_handler(user:http_dispatch,37,[protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),_,httpd_wrapper:true). % init.pl:274: (8)[httpd_wrapper] httpd_wrapper:call_handler(user:http_dispatch,37,[protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]). % http_wrapper.pl:295: (9)[http_dispatch] http_dispatch:http_dispatch([session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]). % http_dispatch.pl:318: (10)[http_dispatch] http_dispatch:action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked]). % http_dispatch.pl:596: (11)[http_dispatch] http_dispatch:spawn_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked]). % http_dispatch.pl:607: (12)[http_dispatch] http_dispatch:time_limit_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked]). % http_dispatch.pl:616: (13)[time] time:call_with_time_limit(300,http_dispatch:call_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked])). % time.pl:128: (14)[system] system:setup_call_cleanup(time:alarm(300,time_limit_exceeded(300),'$alarm'(35163140388208),[install(false)]),time:run_alarm_goal('$alarm'(35163140388208),http_dispatch:call_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked])),time:remove_alarm_notrace('$alarm'(35163140388208))). % init.pl:314: (15)[system] system:setup_call_catcher_cleanup(time:alarm(300,time_limit_exceeded(300),'$alarm'(35163140388208),[install(false)]),time:run_alarm_goal('$alarm'(35163140388208),http_dispatch:call_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked])),_,time:remove_alarm_notrace('$alarm'(35163140388208))). % init.pl:310: (16)[time] time:run_alarm_goal('$alarm'(35163140388208),http_dispatch:call_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked])). % time.pl:137: (17)[http_dispatch] http_dispatch:call_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked]). % http_dispatch.pl:635: *(18)[http_dispatch] http_dispatch:call_action(user:handler_logicmoo_cyclone,[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]). % http_dispatch.pl:641: (19)[user] handler_logicmoo_cyclone([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]). % logicmoo_i_www.pl:142: (20)[user] system:notrace(call(handler_logicmoo_cyclone_1,[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])). no(clause) (21)[system] system:'$c_call_prolog'. no(clause) (22)[system] system:call(user:handler_logicmoo_cyclone_1,[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]). % init.pl:215: (23)[user] handler_logicmoo_cyclone_1([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]). % logicmoo_i_www.pl:191: (25)[user] must_det_lm(user, (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(R19/S19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(R19/S19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(R19/S19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(R19/S19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)). % logicmoo_util_bugger.pl:535: (26)[user] must(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P19/Q19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P19/Q19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P19/Q19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(P19/Q19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)). % logicmoo_util_bugger.pl:594: *(27)[user] system:'<meta-call>'((catchvv(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output),O19, (dumpST,dmsg(error,must_xI__xI__xI__xI__xI_(O19,user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output))),set_prolog_flag(debug_on_error,true),ignore_each((rtrace(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)),stop_rtrace,trace,dtrace(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)),badfood(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output))))))*->true;dumpST,ignore_each((trace,dtrace(must_failed_F__A__I__L_(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)),user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)),badfood(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M19/N19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)))))). no(clause) (29)[system] system:catch(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J19/K19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J19/K19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J19/K19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J19/K19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output),L19,logicmoo_util_bugger_catch: (bubbled_ex_check(L19),user: (dumpST,dmsg(error,must_xI__xI__xI__xI__xI_(L19,user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J19/K19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J19/K19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J19/K19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J19/K19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output))),set_prolog_flag(debug_on_error,true),ignore_each((rtrace(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J19/K19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J19/K19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J19/K19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J19/K19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)),stop_rtrace,trace,dtrace(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J19/K19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J19/K19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J19/K19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J19/K19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)),badfood(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J19/K19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J19/K19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J19/K19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J19/K19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output))))))). % init.pl:274: (30)[user] system:'<meta-call>'(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(H19/I19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(H19/I19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(H19/I19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(H19/I19,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)). no(clause) (31)[user] system:notrace(logOnError(edit_term)). no(clause) (32)[system] system:'$c_call_prolog'. no(clause) (35)[user] prolog_ecall_fa(0,user:logOnError0,edit_term,0,user:edit_term). % logicmoo_util_bugger.pl:1654: (38)[system] system:catch(user:edit_term,G19,logicmoo_util_bugger_catch: (bubbled_ex_check(G19),user:dmsg(logOnError(G19,user:edit_term)))). % init.pl:274: *(39)[user] edit_term. % logicmoo_i_www.pl:293: (40)[user] get_nv(search,_). % logicmoo_i_www.pl:165: (41)[user] must(user:param_default_value(search,'VAR_______________________x0BADF00D'(0))). % logicmoo_util_bugger.pl:594: *(44)[system] system:ignore('<garbage_collected>'). % init.pl:257: (45)[user] system:'<meta-call>'('<garbage_collected>'). no(clause) (46)[user] dtrace(must_failed_F__A__I__L_(user:param_default_value(search,'VAR_______________________x0BADF00D'(0))),user:param_default_value(search,'VAR_______________________x0BADF00D'(0))). % logicmoo_util_bugger.pl:2172: (47)[user] dtrace(user:param_default_value(search,'VAR_______________________x0BADF00D'(0))). % logicmoo_util_bugger.pl:2175: (48)[user] hotrace(user:dumpST). % logicmoo_util_bugger.pl:242: (49)[system] system:call_cleanup(user:dumpST,user: ('$visible'(_,271),trace)). % init.pl:317: (50)[system] system:setup_call_catcher_cleanup(system:true,user:dumpST,_,user: ('$visible'(_,271),trace)). % init.pl:310: (51)[user] dumpST. % logicmoo_util_bugger.pl:1840: *(52)[system] system:ignore(user:catch(with_assertions(tlbugger:skipDmsg,dumpST9),F19,writeq(F19))). % init.pl:257: (53)[system] system:catch(user:with_assertions(tlbugger:skipDmsg,dumpST9),E19,user:writeq(E19)). % init.pl:274: (54)[user] with_assertions(tlbugger:skipDmsg,user:dumpST9). % logicmoo_util_with_assertions.pl:39: (55)[system] system:setup_call_cleanup(user:hotrace(asserta(tlbugger:skipDmsg,<clause>(0x7fec3c187110))),user:dumpST9,user:erase_safe(tlbugger:skipDmsg,<clause>(0x7fec3c187110))). % init.pl:314: (56)[system] system:setup_call_catcher_cleanup(user:hotrace(asserta(tlbugger:skipDmsg,<clause>(0x7fec3c187110))),user:dumpST9,_,user:erase_safe(tlbugger:skipDmsg,<clause>(0x7fec3c187110))). % init.pl:310: (57)[user] dumpST9. % logicmoo_util_bugger.pl:1852: (58)[user] hotrace(user: (prolog_current_frame(1442),dumpST2(1442,5000))). % logicmoo_util_bugger.pl:242: (59)[system] system:call_cleanup(user: (prolog_current_frame(1442),dumpST2(1442,5000)),user: ('$visible'(_,256),trace)). % init.pl:317: (60)[system] system:setup_call_catcher_cleanup(system:true,user: (prolog_current_frame(1442),dumpST2(1442,5000)),_,user: ('$visible'(_,256),trace)). % init.pl:310: (61)[user] system:'<meta-call>'(user: (prolog_current_frame(1442),dumpST2(1442,5000))). no(clause)
- skipDmsg(nf(noParent(50,46,[max_depth(5000),numbervars(safe),show([has_alternatives,level,context_module,goal,clause])])))
- (0)[system] system:'$c_call_prolog'. no(clause) *(1)[thread_httpd] thread_httpd:http_worker([queue('httpd@3020'),tcp_socket('$socket'(1)),workers(16)]). % thread_httpd.pl:516: (2)[system] system:catch(thread_httpd:http_process(user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0),[pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),timeout(60),peer(ip(73,164,203,95)),protocol(http)]),_,thread_httpd:true). % init.pl:274: (3)[thread_httpd] thread_httpd:http_process(user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0),[pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),timeout(60),peer(ip(73,164,203,95)),protocol(http)]). % thread_httpd.pl:711: (4)[httpd_wrapper] httpd_wrapper:http_wrapper(user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0),_,[request([protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),timeout(60),peer(ip(73,164,203,95)),protocol(http)]). % http_wrapper.pl:93: (5)[httpd_wrapper] httpd_wrapper:handler_with_output_to(user:http_dispatch,37,[protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],<stream>(0x7fec3c162f80),_). % http_wrapper.pl:287: *(6)[httpd_wrapper] httpd_wrapper:handler_with_output_to(user:http_dispatch,37,[protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],current_output,_). % http_wrapper.pl:279: (7)[system] system:catch(httpd_wrapper:call_handler(user:http_dispatch,37,[protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),_,httpd_wrapper:true). % init.pl:274: (8)[httpd_wrapper] httpd_wrapper:call_handler(user:http_dispatch,37,[protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]). % http_wrapper.pl:295: (9)[http_dispatch] http_dispatch:http_dispatch([session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]). % http_dispatch.pl:318: (10)[http_dispatch] http_dispatch:action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked]). % http_dispatch.pl:596: (11)[http_dispatch] http_dispatch:spawn_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked]). % http_dispatch.pl:607: (12)[http_dispatch] http_dispatch:time_limit_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked]). % http_dispatch.pl:616: (13)[time] time:call_with_time_limit(300,http_dispatch:call_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked])). % time.pl:128: (14)[system] system:setup_call_cleanup(time:alarm(300,time_limit_exceeded(300),'$alarm'(35163140388208),[install(false)]),time:run_alarm_goal('$alarm'(35163140388208),http_dispatch:call_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked])),time:remove_alarm_notrace('$alarm'(35163140388208))). % init.pl:314: (15)[system] system:setup_call_catcher_cleanup(time:alarm(300,time_limit_exceeded(300),'$alarm'(35163140388208),[install(false)]),time:run_alarm_goal('$alarm'(35163140388208),http_dispatch:call_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked])),_,time:remove_alarm_notrace('$alarm'(35163140388208))). % init.pl:310: (16)[time] time:run_alarm_goal('$alarm'(35163140388208),http_dispatch:call_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked])). % time.pl:137: (17)[http_dispatch] http_dispatch:call_action(user:handler_logicmoo_cyclone,[session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])],[path_info(edit_term),prefix(true),chunked]). % http_dispatch.pl:635: *(18)[http_dispatch] http_dispatch:call_action(user:handler_logicmoo_cyclone,[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]). % http_dispatch.pl:641: (19)[user] handler_logicmoo_cyclone([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]). % logicmoo_i_www.pl:142: (20)[user] system:notrace(call(handler_logicmoo_cyclone_1,[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])). no(clause) (21)[system] system:'$c_call_prolog'. no(clause) (22)[system] system:call(user:handler_logicmoo_cyclone_1,[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]). % init.pl:215: (23)[user] handler_logicmoo_cyclone_1([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(_/_,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]). % logicmoo_i_www.pl:191: (25)[user] must_det_lm(user, (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(O8/P8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(O8/P8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(O8/P8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(O8/P8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)). % logicmoo_util_bugger.pl:535: (26)[user] must(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M8/N8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M8/N8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M8/N8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(M8/N8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)). % logicmoo_util_bugger.pl:594: *(27)[user] system:'<meta-call>'((catchvv(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output),L8, (dumpST,dmsg(error,must_xI__xI__xI__xI__xI_(L8,user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output))),set_prolog_flag(debug_on_error,true),ignore_each((rtrace(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)),stop_rtrace,trace,dtrace(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)),badfood(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output))))))*->true;dumpST,ignore_each((trace,dtrace(must_failed_F__A__I__L_(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)),user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)),badfood(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(J8/K8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)))))). no(clause) (29)[system] system:catch(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(G8/H8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(G8/H8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(G8/H8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(G8/H8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output),I8,logicmoo_util_bugger_catch: (bubbled_ex_check(I8),user: (dumpST,dmsg(error,must_xI__xI__xI__xI__xI_(I8,user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(G8/H8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(G8/H8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(G8/H8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(G8/H8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output))),set_prolog_flag(debug_on_error,true),ignore_each((rtrace(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(G8/H8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(G8/H8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(G8/H8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(G8/H8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)),stop_rtrace,trace,dtrace(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(G8/H8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(G8/H8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(G8/H8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(G8/H8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)),badfood(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(G8/H8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(G8/H8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(G8/H8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(G8/H8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output))))))). % init.pl:274: (30)[user] system:'<meta-call>'(user: (save_request_in_session([path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(E8/F8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),format('Content-type: text/html~n~n',[])->format('<html><head>',[])-> (member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(E8/F8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])])->format('<meta http-equiv="refresh" content="300;~w">',['/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']);true),member(request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(E8/F8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),member(path('/logicmoo/edit_term'),[path_info(edit_term),session('5bcd-d9b7-c5ac-0d8b.ubuntu'),protocol(http),peer(ip(73,164,203,95)),pool(client('httpd@3020',user:http_dispatch,<stream>(0x7fec3c067970),<stream>(0x7fec3c0273a0))),input(<stream>(0x7fec3c067970)),method(get),request_uri('/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),path('/logicmoo/edit_term'),search([action_below=query,'Apply'='Now',search=tUnaryPredicate]),http_version(1-1),host('prologmoo.com'),port(3020),connection('keep-alive'),cache_control('max-age=0'),accept([media(text/html,[],1.0,[]),media(application/'xhtml+xml',[],1.0,[]),media(image/webp,[],1.0,[]),media(application/xml,[],0.9,[]),media(E8/F8,[],0.8,[])]),upgrade_insecure_requests('1'),user_agent('Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36'),referer('http://prologmoo.com:3020/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate'),accept_encoding('gzip, deflate, sdch'),accept_language('en-US,en;q=0.8'),cookie([swipl_session='5bcd-d9b7-c5ac-0d8b.ubuntu'])]),directory_file_path('/logicmoo',edit_term,'/logicmoo/edit_term'), (current_predicate(edit_term/0)->get_nv(call,edit_term,edit_term);get_nv(call,edit_term,edit_term)),format('<title>~q for ~q</title></head>',[edit_term,'/logicmoo/edit_term?action_below=query&Apply=Now&search=tUnaryPredicate']),format('<body class="yui-skin-sam">',[]),flush_output,notrace(logOnError(edit_term)),!,flush_output,format('</body></html>~n~n',[]),flush_output)). no(clause) (31)[user] system:notrace(logOnError(edit_term)). no(clause) (32)[system] system:'$c_call_prolog'. no(clause) (35)[user] prolog_ecall_fa(0,user:logOnError0,edit_term,0,user:edit_term). % logicmoo_util_bugger.pl:1654: (38)[system] system:catch(user:edit_term,D8,logicmoo_util_bugger_catch: (bubbled_ex_check(D8),user:dmsg(logOnError(D8,user:edit_term)))). % init.pl:274: *(39)[user] edit_term. % logicmoo_i_www.pl:293: (40)[user] get_nv(search,_). % logicmoo_i_www.pl:165: (41)[user] must(user:param_default_value(search,'VAR_______________________x0BADF00D'(0))). % logicmoo_util_bugger.pl:594: *(44)[system] system:ignore('<garbage_collected>'). % init.pl:257: (45)[user] system:'<meta-call>'('<garbage_collected>'). no(clause) (46)[user] badfood(user:param_default_value(search,'VAR_______________________x0BADF00D'(0))). % logicmoo_util_bugger.pl:575: (47)[user] dumpST. % logicmoo_util_bugger.pl:1840: *(48)[system] system:ignore(user:catch(with_assertions(tlbugger:skipDmsg,dumpST9),C8,writeq(C8))). % init.pl:257: (49)[system] system:catch(user:with_assertions(tlbugger:skipDmsg,dumpST9),B8,user:writeq(B8)). % init.pl:274: (50)[user] with_assertions(tlbugger:skipDmsg,user:dumpST9). % logicmoo_util_with_assertions.pl:39: (51)[system] system:setup_call_cleanup(user:hotrace(asserta(tlbugger:skipDmsg,<clause>(0x7fec3c17bec0))),user:dumpST9,user:erase_safe(tlbugger:skipDmsg,<clause>(0x7fec3c17bec0))). % init.pl:314: (52)[system] system:setup_call_catcher_cleanup(user:hotrace(asserta(tlbugger:skipDmsg,<clause>(0x7fec3c17bec0))),user:dumpST9,_,user:erase_safe(tlbugger:skipDmsg,<clause>(0x7fec3c17bec0))). % init.pl:310: (53)[user] dumpST9. % logicmoo_util_bugger.pl:1852: (54)[user] hotrace(user: (prolog_current_frame(1373),dumpST2(1373,5000))). % logicmoo_util_bugger.pl:242: (55)[system] system:call_cleanup(user: (prolog_current_frame(1373),dumpST2(1373,5000)),user: ('$visible'(_,271),trace)). % init.pl:317: (56)[system] system:setup_call_catcher_cleanup(system:true,user: (prolog_current_frame(1373),dumpST2(1373,5000)),_,user: ('$visible'(_,271),trace)). % init.pl:310: (57)[user] system:'<meta-call>'(user: (prolog_current_frame(1373),dumpST2(1373,5000))). no(clause)
- % search=tUnaryPredicate.
- %
- % warn(error(skip_prolog_load_file_nlc((wrong_thread('httpd@3020_6'):-thread(user:library(make), [if(not_loaded)]))))).
- %
- ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ '\n(thereExists ?THEMAN (implies \n (thereExists ?MORAL-SHAMING (and (isa ?MORAL-SHAMING Shaming) (performedBy ?MORAL-SHAMING ?THEMAN) (obligatedAgents TheGoldenRule ?THEMAN)))\n (agentViolatesObligation ?THEMAN TheGoldenRule)))'
- ].
- pkif :-
- [ '\n(thereExists ?THEMAN (implies \n (thereExists ?MORAL-SHAMING (and (isa ?MORAL-SHAMING Shaming) (performedBy ?MORAL-SHAMING ?THEMAN) (obligatedAgents TheGoldenRule ?THEMAN)))\n (agentViolatesObligation ?THEMAN TheGoldenRule)))'
- ].
- cnf :-
- '\n(thereExists ?THEMAN (implies \n (thereExists ?MORAL-SHAMING (and (isa ?MORAL-SHAMING Shaming) (performedBy ?MORAL-SHAMING ?THEMAN) (obligatedAgents TheGoldenRule ?THEMAN)))\n (agentViolatesObligation ?THEMAN TheGoldenRule)))'.
- %
- tell39:0
- (thereExists ?THEMAN (implies
- (thereExists ?MORAL-SHAMING (and (isa ?MORAL-SHAMING Shaming) (performedBy ?MORAL-SHAMING ?THEMAN) (obligatedAgents TheGoldenRule ?THEMAN)))
- (agentViolatesObligation ?THEMAN TheGoldenRule))).
- tell39:0
- (thereExists ?THEMAN (implies
- (thereExists ?MORAL-SHAMING (and (isa ?MORAL-SHAMING Shaming) (performedBy ?MORAL-SHAMING ?THEMAN) (obligatedAgents TheGoldenRule ?THEMAN)))
- (agentViolatesObligation ?THEMAN TheGoldenRule))).pttp :-
- [ ('\n(thereExists ?THEMAN (implies \n (thereExists ?MORAL-SHAMING (and (isa ?MORAL-SHAMING Shaming) (performedBy ?MORAL-SHAMING ?THEMAN) (obligatedAgents TheGoldenRule ?THEMAN)))\n (agentViolatesObligation ?THEMAN TheGoldenRule)))':-true)
- ].
- %
- '\n(thereExists ?THEMAN (implies \n (thereExists ?MORAL-SHAMING (and (isa ?MORAL-SHAMING Shaming) (performedBy ?MORAL-SHAMING ?THEMAN) (obligatedAgents TheGoldenRule ?THEMAN)))\n (agentViolatesObligation ?THEMAN TheGoldenRule)))' :-
- w_infer_by(tell39:0),
- [].
- %
- tell39:0
- (thereExists ?THEMAN (implies
- (thereExists ?MORAL-SHAMING (and (isa ?MORAL-SHAMING Shaming) (performedBy ?MORAL-SHAMING ?THEMAN) (obligatedAgents TheGoldenRule ?THEMAN)))
- (agentViolatesObligation ?THEMAN TheGoldenRule))):-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ all[INST1],
- [ all[INST2],
- [ implies,
- [ isa(INST1, 'Exhibitionism'),
- cycHolds(['PresentTenseVersionFn', doneBy], INST1, INST2)
- ],
- (=>),
- [isa(INST2, 'ExhibitionistOffender')]
- ]
- ]
- ].
- pkif :-
- [ implies,
- [poss(KB, cycHolds(['PresentTenseVersionFn', doneBy], INST1, INST2))],
- (=>),
- [ all[INST1],
- [ all[INST2],
- [ implies,
- [ isa(INST1, 'Exhibitionism'),
- cycHolds(['PresentTenseVersionFn', doneBy], INST1, INST2)
- ],
- (=>),
- [isa(INST2, 'ExhibitionistOffender')]
- ]
- ]
- ]
- ].
- cnf :-
- ( not(cycHolds(('PresentTenseVersionFn', doneBy), INST1, INST2))
- ; isa(INST2, 'ExhibitionistOffender')
- ; not(isa(INST1, 'Exhibitionism'))
- ).
- %
- % todo(warn(builtin_why(cycHolds, 3, built_in))).
- %
- % todo(warn(pttp_builtin(cycHolds, 3))).
- %
- tell40:0 not_call_builtin(cycHolds, (PresentTenseVersionFn,doneBy),INST1,INST2);isa(INST2,ExhibitionistOffender);not_isa(INST1,Exhibitionism).pttp :-
- [ (isa(INST2, 'ExhibitionistOffender'):-call_builtin(cycHolds, ('PresentTenseVersionFn', doneBy), INST1, INST2), isa(INST1, 'Exhibitionism')),
- (not_isa(INST1, 'Exhibitionism'):-call_builtin(cycHolds, ('PresentTenseVersionFn', doneBy), INST1, INST2), not_isa(INST2, 'ExhibitionistOffender')),
- (not_call_builtin(cycHolds, ('PresentTenseVersionFn', doneBy), INST1, INST2):-not_isa(INST2, 'ExhibitionistOffender'), isa(INST1, 'Exhibitionism'))
- ].
- %
- isa(INST2, 'ExhibitionistOffender') :-
- w_infer_by(tell40:0),
- cycHolds(('PresentTenseVersionFn', doneBy), INST1, INST2),
- isa(INST1, 'Exhibitionism').
- %
- % todo(warn(pttp_builtin(call_builtin, 4))).
- %
- tell40:0 isa(INST2,ExhibitionistOffender):-call_builtin(cycHolds, (PresentTenseVersionFn,doneBy),INST1,INST2),isa(INST1,Exhibitionism).not_isa(INST1,
- 'Exhibitionism') :-
- w_infer_by(tell40:1),
- cycHolds(('PresentTenseVersionFn', doneBy), INST1, INST2),
- not(isa(INST2, 'ExhibitionistOffender')).
- %
- tell40:1 not_isa(INST1,Exhibitionism):-call_builtin(cycHolds, (PresentTenseVersionFn,doneBy),INST1,INST2),not_isa(INST2,ExhibitionistOffender).not_call_builtin(cycHolds,
- ('PresentTenseVersionFn', doneBy),
- INST1,
- INST2) :-
- w_infer_by(tell40:2),
- not(isa(INST2, 'ExhibitionistOffender')),
- isa(INST1, 'Exhibitionism').
- %
- tell40:2 not_call_builtin(cycHolds, (PresentTenseVersionFn,doneBy),INST1,INST2):-not_isa(INST2,ExhibitionistOffender),isa(INST1,Exhibitionism).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ '\n(implies \n (and \n (isa ?INST1 Exhibitionism) \n ((PresentTenseVersionFn doneBy) ?INST1 ?INST2)) \n (isa ?INST2 ExhibitionistOffender))'
- ].
- pkif :-
- [ '\n(implies \n (and \n (isa ?INST1 Exhibitionism) \n ((PresentTenseVersionFn doneBy) ?INST1 ?INST2)) \n (isa ?INST2 ExhibitionistOffender))'
- ].
- cnf :-
- '\n(implies \n (and \n (isa ?INST1 Exhibitionism) \n ((PresentTenseVersionFn doneBy) ?INST1 ?INST2)) \n (isa ?INST2 ExhibitionistOffender))'.
- %
- tell41:0
- (implies
- (and
- (isa ?INST1 Exhibitionism)
- ((PresentTenseVersionFn doneBy) ?INST1 ?INST2))
- (isa ?INST2 ExhibitionistOffender)).
- tell41:0
- (implies
- (and
- (isa ?INST1 Exhibitionism)
- ((PresentTenseVersionFn doneBy) ?INST1 ?INST2))
- (isa ?INST2 ExhibitionistOffender)).pttp :-
- [ ('\n(implies \n (and \n (isa ?INST1 Exhibitionism) \n ((PresentTenseVersionFn doneBy) ?INST1 ?INST2)) \n (isa ?INST2 ExhibitionistOffender))':-true)
- ].
- %
- '\n(implies \n (and \n (isa ?INST1 Exhibitionism) \n ((PresentTenseVersionFn doneBy) ?INST1 ?INST2)) \n (isa ?INST2 ExhibitionistOffender))' :-
- w_infer_by(tell41:0),
- [].
- %
- tell41:0
- (implies
- (and
- (isa ?INST1 Exhibitionism)
- ((PresentTenseVersionFn doneBy) ?INST1 ?INST2))
- (isa ?INST2 ExhibitionistOffender)):-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ all[MS],
- [ all[MP],
- [ implies,
- [isa(MS, 'VisualEvent'), actorPartsInvolved(MS, MP), isa(MP, 'Eyes')],
- (=>),
- [holdsIn(MS, portalState(MP, 'OpenPortal'))]
- ]
- ]
- ].
- pkif :-
- [ implies,
- [poss(KB, holdsIn(MS, portalState(MP, 'OpenPortal')))],
- (=>),
- [ implies,
- [poss(KB, actorPartsInvolved(MS, MP))],
- (=>),
- [ all[MS],
- [ all[MP],
- [ implies,
- [isa(MS, 'VisualEvent'), actorPartsInvolved(MS, MP), isa(MP, 'Eyes')],
- (=>),
- [holdsIn(MS, portalState(MP, 'OpenPortal'))]
- ]
- ]
- ]
- ]
- ].
- cnf :-
- ( not(possible_t(holdsIn(MS, portalState(MP, 'OpenPortal'))))
- ; not(possible_t(actorPartsInvolved(MS, MP)))
- ; holdsIn(MS, portalState(MP, 'OpenPortal'))
- ; not(isa(MS, 'VisualEvent'))
- ; not(actorPartsInvolved(MS, MP))
- ; not(isa(MP, 'Eyes'))
- ).
- %
- tell42:0 not_possible_t(holdsIn,MS,portalState(MP,OpenPortal));not_possible_t(actorPartsInvolved,MS,MP);true_t(holdsIn,MS,portalState(MP,OpenPortal));not_isa(MS,VisualEvent);not_true_t(actorPartsInvolved,MS,MP);not_isa(MP,Eyes).pttp :-
- [ (not_isa(MP, 'Eyes'):-possible_t(holdsIn, MS, portalState(MP, 'OpenPortal')), possible_t(actorPartsInvolved, MS, MP), not_true_t(holdsIn, MS, portalState(MP, 'OpenPortal')), isa(MS, 'VisualEvent'), true_t(actorPartsInvolved, MS, MP)),
- (not_isa(MS, 'VisualEvent'):-possible_t(holdsIn, MS, portalState(MP, 'OpenPortal')), possible_t(actorPartsInvolved, MS, MP), not_true_t(holdsIn, MS, portalState(MP, 'OpenPortal')), true_t(actorPartsInvolved, MS, MP), isa(MP, 'Eyes')),
- (not_possible_t(actorPartsInvolved, MS, MP):-possible_t(holdsIn, MS, portalState(MP, 'OpenPortal')), not_true_t(holdsIn, MS, portalState(MP, 'OpenPortal')), isa(MS, 'VisualEvent'), true_t(actorPartsInvolved, MS, MP), isa(MP, 'Eyes')),
- (not_possible_t(holdsIn, MS, portalState(MP, 'OpenPortal')):-possible_t(actorPartsInvolved, MS, MP), not_true_t(holdsIn, MS, portalState(MP, 'OpenPortal')), isa(MS, 'VisualEvent'), true_t(actorPartsInvolved, MS, MP), isa(MP, 'Eyes')),
- (not_true_t(actorPartsInvolved, MS, MP):-possible_t(holdsIn, MS, portalState(MP, 'OpenPortal')), possible_t(actorPartsInvolved, MS, MP), not_true_t(holdsIn, MS, portalState(MP, 'OpenPortal')), isa(MS, 'VisualEvent'), isa(MP, 'Eyes')),
- (true_t(holdsIn, MS, portalState(MP, 'OpenPortal')):-possible_t(holdsIn, MS, portalState(MP, 'OpenPortal')), possible_t(actorPartsInvolved, MS, MP), isa(MS, 'VisualEvent'), true_t(actorPartsInvolved, MS, MP), isa(MP, 'Eyes'))
- ].
- %
- not_isa(MP, 'Eyes') :-
- w_infer_by(tell42:0),
- not(holdsIn(MS, portalState(MP, 'OpenPortal'))),
- isa(MS, 'VisualEvent'),
- actorPartsInvolved(MS, MP).
- %
- tell42:0 not_isa(MP,Eyes):-not_true_t(holdsIn,MS,portalState(MP,OpenPortal)),isa(MS,VisualEvent),true_t(actorPartsInvolved,MS,MP).not_isa(MS,
- 'VisualEvent') :-
- w_infer_by(tell42:1),
- not(holdsIn(MS, portalState(MP, 'OpenPortal'))),
- actorPartsInvolved(MS, MP),
- isa(MP, 'Eyes').
- %
- tell42:1 not_isa(MS,VisualEvent):-not_true_t(holdsIn,MS,portalState(MP,OpenPortal)),true_t(actorPartsInvolved,MS,MP),isa(MP,Eyes).not_possible_t(actorPartsInvolved,
- MS,
- MP) :-
- w_infer_by(tell42:2),
- not(holdsIn(MS, portalState(MP, 'OpenPortal'))),
- isa(MS, 'VisualEvent'),
- actorPartsInvolved(MS, MP),
- isa(MP, 'Eyes').
- %
- tell42:2 not_possible_t(actorPartsInvolved,MS,MP):-not_true_t(holdsIn,MS,portalState(MP,OpenPortal)),isa(MS,VisualEvent),true_t(actorPartsInvolved,MS,MP),isa(MP,Eyes).not_possible_t(holdsIn,
- MS,
- portalState(MP,
- 'OpenPortal')) :-
- w_infer_by(tell42:3),
- not(holdsIn(MS, portalState(MP, 'OpenPortal'))),
- isa(MS, 'VisualEvent'),
- actorPartsInvolved(MS, MP),
- isa(MP, 'Eyes').
- %
- tell42:3 not_possible_t(holdsIn,MS,portalState(MP,OpenPortal)):-not_true_t(holdsIn,MS,portalState(MP,OpenPortal)),isa(MS,VisualEvent),true_t(actorPartsInvolved,MS,MP),isa(MP,Eyes).not_true_t(actorPartsInvolved,
- MS,
- MP) :-
- w_infer_by(tell42:4),
- poss(actorPartsInvolved(MS, MP)),
- not(holdsIn(MS, portalState(MP, 'OpenPortal'))),
- isa(MS, 'VisualEvent'),
- isa(MP, 'Eyes').
- %
- tell42:4 not_true_t(actorPartsInvolved,MS,MP):-possible_t(actorPartsInvolved,MS,MP),not_true_t(holdsIn,MS,portalState(MP,OpenPortal)),isa(MS,VisualEvent),isa(MP,Eyes).true_t(holdsIn,
- MS,
- portalState(MP,
- 'OpenPortal')) :-
- w_infer_by(tell42:5),
- poss(holdsIn(MS, portalState(MP, 'OpenPortal'))),
- isa(MS, 'VisualEvent'),
- actorPartsInvolved(MS, MP),
- isa(MP, 'Eyes').
- %
- tell42:5 true_t(holdsIn,MS,portalState(MP,OpenPortal)):-possible_t(holdsIn,MS,portalState(MP,OpenPortal)),isa(MS,VisualEvent),true_t(actorPartsInvolved,MS,MP),isa(MP,Eyes).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ '\n(implies \n (and \n (isa ?MS VisualEvent) \n (actorPartsInvolved ?MS ?MP) \n (isa ?MP Eyes)) \n (holdsIn ?MS \n (portalState ?MP OpenPortal)))'
- ].
- pkif :-
- [ '\n(implies \n (and \n (isa ?MS VisualEvent) \n (actorPartsInvolved ?MS ?MP) \n (isa ?MP Eyes)) \n (holdsIn ?MS \n (portalState ?MP OpenPortal)))'
- ].
- cnf :-
- '\n(implies \n (and \n (isa ?MS VisualEvent) \n (actorPartsInvolved ?MS ?MP) \n (isa ?MP Eyes)) \n (holdsIn ?MS \n (portalState ?MP OpenPortal)))'.
- %
- tell43:0
- (implies
- (and
- (isa ?MS VisualEvent)
- (actorPartsInvolved ?MS ?MP)
- (isa ?MP Eyes))
- (holdsIn ?MS
- (portalState ?MP OpenPortal))).
- tell43:0
- (implies
- (and
- (isa ?MS VisualEvent)
- (actorPartsInvolved ?MS ?MP)
- (isa ?MP Eyes))
- (holdsIn ?MS
- (portalState ?MP OpenPortal))).pttp :-
- [ ('\n(implies \n (and \n (isa ?MS VisualEvent) \n (actorPartsInvolved ?MS ?MP) \n (isa ?MP Eyes)) \n (holdsIn ?MS \n (portalState ?MP OpenPortal)))':-true)
- ].
- %
- '\n(implies \n (and \n (isa ?MS VisualEvent) \n (actorPartsInvolved ?MS ?MP) \n (isa ?MP Eyes)) \n (holdsIn ?MS \n (portalState ?MP OpenPortal)))' :-
- w_infer_by(tell43:0),
- [].
- %
- tell43:0
- (implies
- (and
- (isa ?MS VisualEvent)
- (actorPartsInvolved ?MS ?MP)
- (isa ?MP Eyes))
- (holdsIn ?MS
- (portalState ?MP OpenPortal))):-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ all[ACT],
- [ all[WOMAN],
- [ all[LAW],
- [ implies,
- [ performedBy(ACT, WOMAN),
- isa(ACT, 'DisplayingFn'('SexOrgan')),
- lawProscribesActType(LAW, 'Exhibitionism'),
- subjectToCOC(WOMAN, LAW)
- ],
- (=>),
- [isa(ACT, 'Exhibitionism'), agentViolatesObligation(WOMAN, LAW)]
- ]
- ]
- ]
- ].
- pkif :-
- [ implies,
- [poss(KB, agentViolatesObligation(WOMAN, LAW))],
- (=>),
- [ implies,
- [poss(KB, subjectToCOC(WOMAN, LAW))],
- (=>),
- [ implies,
- [poss(KB, lawProscribesActType(LAW, 'Exhibitionism'))],
- (=>),
- [ implies,
- [poss(KB, performedBy(ACT, WOMAN))],
- (=>),
- [ all[ACT],
- [ all[WOMAN],
- [ all[LAW],
- [ implies,
- [ performedBy(ACT, WOMAN),
- isa(ACT, 'DisplayingFn'('SexOrgan')),
- lawProscribesActType(LAW, 'Exhibitionism'),
- subjectToCOC(WOMAN, LAW)
- ],
- (=>),
- [ isa(ACT, 'Exhibitionism'),
- agentViolatesObligation(WOMAN, LAW)
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ].
- cnf :-
- ( not(possible_t(agentViolatesObligation(WOMAN, LAW)))
- ; not(possible_t(subjectToCOC(WOMAN, LAW)))
- ; not(possible_t(lawProscribesActType(LAW, 'Exhibitionism')))
- ; not(possible_t(performedBy(ACT, WOMAN)))
- ; isa(ACT, 'Exhibitionism')
- ; not(performedBy(ACT, WOMAN))
- ; not(isa(ACT, 'DisplayingFn'('SexOrgan')))
- ; not(lawProscribesActType(LAW, 'Exhibitionism'))
- ; not(subjectToCOC(WOMAN, LAW))
- ),
- ( not(possible_t(agentViolatesObligation(WOMAN, LAW)))
- ; not(possible_t(subjectToCOC(WOMAN, LAW)))
- ; not(possible_t(lawProscribesActType(LAW, 'Exhibitionism')))
- ; not(possible_t(performedBy(ACT, WOMAN)))
- ; agentViolatesObligation(WOMAN, LAW)
- ; not(performedBy(ACT, WOMAN))
- ; not(isa(ACT, 'DisplayingFn'('SexOrgan')))
- ; not(lawProscribesActType(LAW, 'Exhibitionism'))
- ; not(subjectToCOC(WOMAN, LAW))
- ).
- %
- tell44:0 not_possible_t(agentViolatesObligation,WOMAN,LAW);not_possible_t(subjectToCOC,WOMAN,LAW);not_possible_t(lawProscribesActType,LAW,Exhibitionism);not_possible_t(performedBy,ACT,WOMAN);isa(ACT,Exhibitionism);not_true_t(performedBy,ACT,WOMAN);not_isa(ACT,DisplayingFn(SexOrgan));not_true_t(lawProscribesActType,LAW,Exhibitionism);not_true_t(subjectToCOC,WOMAN,LAW).
- tell44:1 not_possible_t(agentViolatesObligation,WOMAN,LAW);not_possible_t(subjectToCOC,WOMAN,LAW);not_possible_t(lawProscribesActType,LAW,Exhibitionism);not_possible_t(performedBy,ACT,WOMAN);true_t(agentViolatesObligation,WOMAN,LAW);not_true_t(performedBy,ACT,WOMAN);not_isa(ACT,DisplayingFn(SexOrgan));not_true_t(lawProscribesActType,LAW,Exhibitionism);not_true_t(subjectToCOC,WOMAN,LAW).pttp :-
- [ (isa(ACT, 'Exhibitionism'):-possible_t(agentViolatesObligation, WOMAN, LAW), possible_t(subjectToCOC, WOMAN, LAW), possible_t(lawProscribesActType, LAW, 'Exhibitionism'), possible_t(performedBy, ACT, WOMAN), true_t(performedBy, ACT, WOMAN), isa(ACT, 'DisplayingFn'('SexOrgan')), true_t(lawProscribesActType, LAW, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, LAW)),
- (not_isa(ACT, 'DisplayingFn'('SexOrgan')):-possible_t(agentViolatesObligation, WOMAN, LAW), possible_t(subjectToCOC, WOMAN, LAW), possible_t(lawProscribesActType, LAW, 'Exhibitionism'), possible_t(performedBy, ACT, WOMAN), not_isa(ACT, 'Exhibitionism'), true_t(performedBy, ACT, WOMAN), true_t(lawProscribesActType, LAW, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, LAW)),
- (not_isa(ACT, 'DisplayingFn'('SexOrgan')):-possible_t(agentViolatesObligation, WOMAN, LAW), possible_t(subjectToCOC, WOMAN, LAW), possible_t(lawProscribesActType, LAW, 'Exhibitionism'), possible_t(performedBy, ACT, WOMAN), not_true_t(agentViolatesObligation, WOMAN, LAW), true_t(performedBy, ACT, WOMAN), true_t(lawProscribesActType, LAW, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, LAW)),
- (not_possible_t(agentViolatesObligation, WOMAN, LAW):-possible_t(subjectToCOC, WOMAN, LAW), possible_t(lawProscribesActType, LAW, 'Exhibitionism'), possible_t(performedBy, ACT, WOMAN), not_isa(ACT, 'Exhibitionism'), true_t(performedBy, ACT, WOMAN), isa(ACT, 'DisplayingFn'('SexOrgan')), true_t(lawProscribesActType, LAW, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, LAW)),
- (not_possible_t(agentViolatesObligation, WOMAN, LAW):-possible_t(subjectToCOC, WOMAN, LAW), possible_t(lawProscribesActType, LAW, 'Exhibitionism'), possible_t(performedBy, ACT, WOMAN), not_true_t(agentViolatesObligation, WOMAN, LAW), true_t(performedBy, ACT, WOMAN), isa(ACT, 'DisplayingFn'('SexOrgan')), true_t(lawProscribesActType, LAW, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, LAW)),
- (not_possible_t(lawProscribesActType, LAW, 'Exhibitionism'):-possible_t(agentViolatesObligation, WOMAN, LAW), possible_t(subjectToCOC, WOMAN, LAW), possible_t(performedBy, ACT, WOMAN), not_isa(ACT, 'Exhibitionism'), true_t(performedBy, ACT, WOMAN), isa(ACT, 'DisplayingFn'('SexOrgan')), true_t(lawProscribesActType, LAW, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, LAW)),
- (not_possible_t(lawProscribesActType, LAW, 'Exhibitionism'):-possible_t(agentViolatesObligation, WOMAN, LAW), possible_t(subjectToCOC, WOMAN, LAW), possible_t(performedBy, ACT, WOMAN), not_true_t(agentViolatesObligation, WOMAN, LAW), true_t(performedBy, ACT, WOMAN), isa(ACT, 'DisplayingFn'('SexOrgan')), true_t(lawProscribesActType, LAW, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, LAW)),
- (not_possible_t(performedBy, ACT, WOMAN):-possible_t(agentViolatesObligation, WOMAN, LAW), possible_t(subjectToCOC, WOMAN, LAW), possible_t(lawProscribesActType, LAW, 'Exhibitionism'), not_isa(ACT, 'Exhibitionism'), true_t(performedBy, ACT, WOMAN), isa(ACT, 'DisplayingFn'('SexOrgan')), true_t(lawProscribesActType, LAW, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, LAW)),
- (not_possible_t(performedBy, ACT, WOMAN):-possible_t(agentViolatesObligation, WOMAN, LAW), possible_t(subjectToCOC, WOMAN, LAW), possible_t(lawProscribesActType, LAW, 'Exhibitionism'), not_true_t(agentViolatesObligation, WOMAN, LAW), true_t(performedBy, ACT, WOMAN), isa(ACT, 'DisplayingFn'('SexOrgan')), true_t(lawProscribesActType, LAW, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, LAW)),
- (not_possible_t(subjectToCOC, WOMAN, LAW):-possible_t(agentViolatesObligation, WOMAN, LAW), possible_t(lawProscribesActType, LAW, 'Exhibitionism'), possible_t(performedBy, ACT, WOMAN), not_isa(ACT, 'Exhibitionism'), true_t(performedBy, ACT, WOMAN), isa(ACT, 'DisplayingFn'('SexOrgan')), true_t(lawProscribesActType, LAW, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, LAW)),
- (not_possible_t(subjectToCOC, WOMAN, LAW):-possible_t(agentViolatesObligation, WOMAN, LAW), possible_t(lawProscribesActType, LAW, 'Exhibitionism'), possible_t(performedBy, ACT, WOMAN), not_true_t(agentViolatesObligation, WOMAN, LAW), true_t(performedBy, ACT, WOMAN), isa(ACT, 'DisplayingFn'('SexOrgan')), true_t(lawProscribesActType, LAW, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, LAW)),
- (not_true_t(lawProscribesActType, LAW, 'Exhibitionism'):-possible_t(agentViolatesObligation, WOMAN, LAW), possible_t(subjectToCOC, WOMAN, LAW), possible_t(lawProscribesActType, LAW, 'Exhibitionism'), possible_t(performedBy, ACT, WOMAN), not_isa(ACT, 'Exhibitionism'), true_t(performedBy, ACT, WOMAN), isa(ACT, 'DisplayingFn'('SexOrgan')), true_t(subjectToCOC, WOMAN, LAW)),
- (not_true_t(lawProscribesActType, LAW, 'Exhibitionism'):-possible_t(agentViolatesObligation, WOMAN, LAW), possible_t(subjectToCOC, WOMAN, LAW), possible_t(lawProscribesActType, LAW, 'Exhibitionism'), possible_t(performedBy, ACT, WOMAN), not_true_t(agentViolatesObligation, WOMAN, LAW), true_t(performedBy, ACT, WOMAN), isa(ACT, 'DisplayingFn'('SexOrgan')), true_t(subjectToCOC, WOMAN, LAW)),
- (not_true_t(performedBy, ACT, WOMAN):-possible_t(agentViolatesObligation, WOMAN, LAW), possible_t(subjectToCOC, WOMAN, LAW), possible_t(lawProscribesActType, LAW, 'Exhibitionism'), possible_t(performedBy, ACT, WOMAN), not_isa(ACT, 'Exhibitionism'), isa(ACT, 'DisplayingFn'('SexOrgan')), true_t(lawProscribesActType, LAW, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, LAW)),
- (not_true_t(performedBy, ACT, WOMAN):-possible_t(agentViolatesObligation, WOMAN, LAW), possible_t(subjectToCOC, WOMAN, LAW), possible_t(lawProscribesActType, LAW, 'Exhibitionism'), possible_t(performedBy, ACT, WOMAN), not_true_t(agentViolatesObligation, WOMAN, LAW), isa(ACT, 'DisplayingFn'('SexOrgan')), true_t(lawProscribesActType, LAW, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, LAW)),
- (not_true_t(subjectToCOC, WOMAN, LAW):-possible_t(agentViolatesObligation, WOMAN, LAW), possible_t(subjectToCOC, WOMAN, LAW), possible_t(lawProscribesActType, LAW, 'Exhibitionism'), possible_t(performedBy, ACT, WOMAN), not_isa(ACT, 'Exhibitionism'), true_t(performedBy, ACT, WOMAN), isa(ACT, 'DisplayingFn'('SexOrgan')), true_t(lawProscribesActType, LAW, 'Exhibitionism')),
- (not_true_t(subjectToCOC, WOMAN, LAW):-possible_t(agentViolatesObligation, WOMAN, LAW), possible_t(subjectToCOC, WOMAN, LAW), possible_t(lawProscribesActType, LAW, 'Exhibitionism'), possible_t(performedBy, ACT, WOMAN), not_true_t(agentViolatesObligation, WOMAN, LAW), true_t(performedBy, ACT, WOMAN), isa(ACT, 'DisplayingFn'('SexOrgan')), true_t(lawProscribesActType, LAW, 'Exhibitionism')),
- (true_t(agentViolatesObligation, WOMAN, LAW):-possible_t(agentViolatesObligation, WOMAN, LAW), possible_t(subjectToCOC, WOMAN, LAW), possible_t(lawProscribesActType, LAW, 'Exhibitionism'), possible_t(performedBy, ACT, WOMAN), true_t(performedBy, ACT, WOMAN), isa(ACT, 'DisplayingFn'('SexOrgan')), true_t(lawProscribesActType, LAW, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, LAW))
- ].
- %
- isa(ACT, 'Exhibitionism') :-
- w_infer_by(tell44:0),
- isa(ACT, 'DisplayingFn'('SexOrgan')),
- performedBy(ACT, WOMAN),
- lawProscribesActType(LAW, 'Exhibitionism'),
- poss(agentViolatesObligation(WOMAN, LAW)),
- subjectToCOC(WOMAN, LAW).
- %
- tell44:0 isa(ACT,Exhibitionism):-isa(ACT,DisplayingFn(SexOrgan)),true_t(performedBy,ACT,WOMAN),true_t(lawProscribesActType,LAW,Exhibitionism),possible_t(agentViolatesObligation,WOMAN,LAW),true_t(subjectToCOC,WOMAN,LAW).not(isa(ACT, DISPLAYINGFNSEXORGAN15)):not(mudEquals(DISPLAYINGFNSEXORGAN15, 'DisplayingFn'('SexOrgan')), (poss(agentViolatesObligation(WOMAN, LAW)), not(isa(ACT, 'Exhibitionism')), performedBy(ACT, WOMAN), lawProscribesActType(LAW, 'Exhibitionism'), subjectToCOC(WOMAN, LAW))) :-
- w_infer_by(tell44:1).
- %
- ;
- tell44:1 true_t(:,not_isa(ACT,DISPLAYINGFNSEXORGAN15),mudEquals(DISPLAYINGFNSEXORGAN15,DisplayingFn(SexOrgan))- (possible_t(agentViolatesObligation,WOMAN,LAW),not_isa(ACT,Exhibitionism),true_t(performedBy,ACT,WOMAN),true_t(lawProscribesActType,LAW,Exhibitionism),true_t(subjectToCOC,WOMAN,LAW))).
- tell44:1 true_t(:,not_isa(ACT,DISPLAYINGFNSEXORGAN15),mudEquals(DISPLAYINGFNSEXORGAN15,DisplayingFn(SexOrgan))- (possible_t(agentViolatesObligation,WOMAN,LAW),not_isa(ACT,Exhibitionism),true_t(performedBy,ACT,WOMAN),true_t(lawProscribesActType,LAW,Exhibitionism),true_t(subjectToCOC,WOMAN,LAW))).not(isa(ACT, DISPLAYINGFNSEXORGAN16)):not(mudEquals(DISPLAYINGFNSEXORGAN16, 'DisplayingFn'('SexOrgan')), (not(agentViolatesObligation(WOMAN, LAW)), performedBy(ACT, WOMAN), lawProscribesActType(LAW, 'Exhibitionism'), subjectToCOC(WOMAN, LAW))) :-
- w_infer_by(tell44:2).
- %
- tell44:2 true_t(:,not_isa(ACT,DISPLAYINGFNSEXORGAN16),mudEquals(DISPLAYINGFNSEXORGAN16,DisplayingFn(SexOrgan))- (not_true_t(agentViolatesObligation,WOMAN,LAW),true_t(performedBy,ACT,WOMAN),true_t(lawProscribesActType,LAW,Exhibitionism),true_t(subjectToCOC,WOMAN,LAW))).
- tell44:2 true_t(:,not_isa(ACT,DISPLAYINGFNSEXORGAN16),mudEquals(DISPLAYINGFNSEXORGAN16,DisplayingFn(SexOrgan))- (not_true_t(agentViolatesObligation,WOMAN,LAW),true_t(performedBy,ACT,WOMAN),true_t(lawProscribesActType,LAW,Exhibitionism),true_t(subjectToCOC,WOMAN,LAW))).not_possible_t(agentViolatesObligation,
- WOMAN,
- LAW) :-
- w_infer_by(tell44:3),
- lawProscribesActType(LAW, 'Exhibitionism'),
- subjectToCOC(WOMAN, LAW),
- not(isa(ACT, 'Exhibitionism')),
- performedBy(ACT, WOMAN),
- isa(ACT, 'DisplayingFn'('SexOrgan')).
- %
- tell44:3 not_possible_t(agentViolatesObligation,WOMAN,LAW):-true_t(lawProscribesActType,LAW,Exhibitionism),true_t(subjectToCOC,WOMAN,LAW),not_isa(ACT,Exhibitionism),true_t(performedBy,ACT,WOMAN),isa(ACT,DisplayingFn(SexOrgan)).not_possible_t(agentViolatesObligation,
- WOMAN,
- LAW) :-
- w_infer_by(tell44:4),
- not(agentViolatesObligation(WOMAN, LAW)),
- lawProscribesActType(LAW, 'Exhibitionism'),
- subjectToCOC(WOMAN, LAW),
- performedBy(ACT, WOMAN),
- isa(ACT, 'DisplayingFn'('SexOrgan')).
- %
- tell44:4 not_possible_t(agentViolatesObligation,WOMAN,LAW):-not_true_t(agentViolatesObligation,WOMAN,LAW),true_t(lawProscribesActType,LAW,Exhibitionism),true_t(subjectToCOC,WOMAN,LAW),true_t(performedBy,ACT,WOMAN),isa(ACT,DisplayingFn(SexOrgan)).not_possible_t(lawProscribesActType,
- LAW,
- 'Exhibitionism') :-
- w_infer_by(tell44:5),
- lawProscribesActType(LAW, 'Exhibitionism'),
- poss(agentViolatesObligation(WOMAN, LAW)),
- not(isa(ACT, 'Exhibitionism')),
- isa(ACT, 'DisplayingFn'('SexOrgan')),
- subjectToCOC(WOMAN, LAW),
- performedBy(ACT, WOMAN).
- %
- tell44:5 not_possible_t(lawProscribesActType,LAW,Exhibitionism):-true_t(lawProscribesActType,LAW,Exhibitionism),possible_t(agentViolatesObligation,WOMAN,LAW),not_isa(ACT,Exhibitionism),isa(ACT,DisplayingFn(SexOrgan)),true_t(subjectToCOC,WOMAN,LAW),true_t(performedBy,ACT,WOMAN).not_possible_t(lawProscribesActType,
- LAW,
- 'Exhibitionism') :-
- w_infer_by(tell44:6),
- lawProscribesActType(LAW, 'Exhibitionism'),
- not(agentViolatesObligation(WOMAN, LAW)),
- isa(ACT, 'DisplayingFn'('SexOrgan')),
- subjectToCOC(WOMAN, LAW),
- performedBy(ACT, WOMAN).
- %
- tell44:6 not_possible_t(lawProscribesActType,LAW,Exhibitionism):-true_t(lawProscribesActType,LAW,Exhibitionism),not_true_t(agentViolatesObligation,WOMAN,LAW),isa(ACT,DisplayingFn(SexOrgan)),true_t(subjectToCOC,WOMAN,LAW),true_t(performedBy,ACT,WOMAN).not_possible_t(performedBy,
- ACT,
- WOMAN) :-
- w_infer_by(tell44:7),
- not(isa(ACT, 'Exhibitionism')),
- performedBy(ACT, WOMAN),
- isa(ACT, 'DisplayingFn'('SexOrgan')),
- poss(agentViolatesObligation(WOMAN, LAW)),
- lawProscribesActType(LAW, 'Exhibitionism'),
- subjectToCOC(WOMAN, LAW).
- %
- tell44:7 not_possible_t(performedBy,ACT,WOMAN):-not_isa(ACT,Exhibitionism),true_t(performedBy,ACT,WOMAN),isa(ACT,DisplayingFn(SexOrgan)),possible_t(agentViolatesObligation,WOMAN,LAW),true_t(lawProscribesActType,LAW,Exhibitionism),true_t(subjectToCOC,WOMAN,LAW).not_possible_t(performedBy,
- ACT,
- WOMAN) :-
- w_infer_by(tell44:8),
- performedBy(ACT, WOMAN),
- isa(ACT, 'DisplayingFn'('SexOrgan')),
- not(agentViolatesObligation(WOMAN, LAW)),
- lawProscribesActType(LAW, 'Exhibitionism'),
- subjectToCOC(WOMAN, LAW).
- %
- tell44:8 not_possible_t(performedBy,ACT,WOMAN):-true_t(performedBy,ACT,WOMAN),isa(ACT,DisplayingFn(SexOrgan)),not_true_t(agentViolatesObligation,WOMAN,LAW),true_t(lawProscribesActType,LAW,Exhibitionism),true_t(subjectToCOC,WOMAN,LAW).not_possible_t(subjectToCOC,
- WOMAN,
- LAW) :-
- w_infer_by(tell44:9),
- poss(agentViolatesObligation(WOMAN, LAW)),
- lawProscribesActType(LAW, 'Exhibitionism'),
- subjectToCOC(WOMAN, LAW),
- not(isa(ACT, 'Exhibitionism')),
- performedBy(ACT, WOMAN),
- isa(ACT, 'DisplayingFn'('SexOrgan')).
- %
- tell44:9 not_possible_t(subjectToCOC,WOMAN,LAW):-possible_t(agentViolatesObligation,WOMAN,LAW),true_t(lawProscribesActType,LAW,Exhibitionism),true_t(subjectToCOC,WOMAN,LAW),not_isa(ACT,Exhibitionism),true_t(performedBy,ACT,WOMAN),isa(ACT,DisplayingFn(SexOrgan)).not_possible_t(subjectToCOC,
- WOMAN,
- LAW) :-
- w_infer_by(tell44:10),
- not(agentViolatesObligation(WOMAN, LAW)),
- lawProscribesActType(LAW, 'Exhibitionism'),
- subjectToCOC(WOMAN, LAW),
- performedBy(ACT, WOMAN),
- isa(ACT, 'DisplayingFn'('SexOrgan')).
- %
- tell44:10 not_possible_t(subjectToCOC,WOMAN,LAW):-not_true_t(agentViolatesObligation,WOMAN,LAW),true_t(lawProscribesActType,LAW,Exhibitionism),true_t(subjectToCOC,WOMAN,LAW),true_t(performedBy,ACT,WOMAN),isa(ACT,DisplayingFn(SexOrgan)).not_true_t(lawProscribesActType,
- LAW,
- 'Exhibitionism') :-
- w_infer_by(tell44:11),
- poss(lawProscribesActType(LAW, 'Exhibitionism')),
- poss(agentViolatesObligation(WOMAN, LAW)),
- not(isa(ACT, 'Exhibitionism')),
- isa(ACT, 'DisplayingFn'('SexOrgan')),
- subjectToCOC(WOMAN, LAW),
- performedBy(ACT, WOMAN).
- %
- tell44:11 not_true_t(lawProscribesActType,LAW,Exhibitionism):-possible_t(lawProscribesActType,LAW,Exhibitionism),possible_t(agentViolatesObligation,WOMAN,LAW),not_isa(ACT,Exhibitionism),isa(ACT,DisplayingFn(SexOrgan)),true_t(subjectToCOC,WOMAN,LAW),true_t(performedBy,ACT,WOMAN).not_true_t(lawProscribesActType,
- LAW,
- 'Exhibitionism') :-
- w_infer_by(tell44:12),
- poss(lawProscribesActType(LAW, 'Exhibitionism')),
- not(agentViolatesObligation(WOMAN, LAW)),
- isa(ACT, 'DisplayingFn'('SexOrgan')),
- subjectToCOC(WOMAN, LAW),
- performedBy(ACT, WOMAN).
- %
- tell44:12 not_true_t(lawProscribesActType,LAW,Exhibitionism):-possible_t(lawProscribesActType,LAW,Exhibitionism),not_true_t(agentViolatesObligation,WOMAN,LAW),isa(ACT,DisplayingFn(SexOrgan)),true_t(subjectToCOC,WOMAN,LAW),true_t(performedBy,ACT,WOMAN).not_true_t(performedBy,
- ACT,
- WOMAN) :-
- w_infer_by(tell44:13),
- poss(performedBy(ACT, WOMAN)),
- not(isa(ACT, 'Exhibitionism')),
- isa(ACT, 'DisplayingFn'('SexOrgan')),
- poss(agentViolatesObligation(WOMAN, LAW)),
- lawProscribesActType(LAW, 'Exhibitionism'),
- subjectToCOC(WOMAN, LAW).
- %
- tell44:13 not_true_t(performedBy,ACT,WOMAN):-possible_t(performedBy,ACT,WOMAN),not_isa(ACT,Exhibitionism),isa(ACT,DisplayingFn(SexOrgan)),possible_t(agentViolatesObligation,WOMAN,LAW),true_t(lawProscribesActType,LAW,Exhibitionism),true_t(subjectToCOC,WOMAN,LAW).not_true_t(performedBy,
- ACT,
- WOMAN) :-
- w_infer_by(tell44:14),
- poss(performedBy(ACT, WOMAN)),
- isa(ACT, 'DisplayingFn'('SexOrgan')),
- not(agentViolatesObligation(WOMAN, LAW)),
- lawProscribesActType(LAW, 'Exhibitionism'),
- subjectToCOC(WOMAN, LAW).
- %
- tell44:14 not_true_t(performedBy,ACT,WOMAN):-possible_t(performedBy,ACT,WOMAN),isa(ACT,DisplayingFn(SexOrgan)),not_true_t(agentViolatesObligation,WOMAN,LAW),true_t(lawProscribesActType,LAW,Exhibitionism),true_t(subjectToCOC,WOMAN,LAW).not_true_t(subjectToCOC,
- WOMAN,
- LAW) :-
- w_infer_by(tell44:15),
- poss(agentViolatesObligation(WOMAN, LAW)),
- poss(subjectToCOC(WOMAN, LAW)),
- lawProscribesActType(LAW, 'Exhibitionism'),
- not(isa(ACT, 'Exhibitionism')),
- performedBy(ACT, WOMAN),
- isa(ACT, 'DisplayingFn'('SexOrgan')).
- %
- tell44:15 not_true_t(subjectToCOC,WOMAN,LAW):-possible_t(agentViolatesObligation,WOMAN,LAW),possible_t(subjectToCOC,WOMAN,LAW),true_t(lawProscribesActType,LAW,Exhibitionism),not_isa(ACT,Exhibitionism),true_t(performedBy,ACT,WOMAN),isa(ACT,DisplayingFn(SexOrgan)).not_true_t(subjectToCOC,
- WOMAN,
- LAW) :-
- w_infer_by(tell44:16),
- poss(subjectToCOC(WOMAN, LAW)),
- not(agentViolatesObligation(WOMAN, LAW)),
- lawProscribesActType(LAW, 'Exhibitionism'),
- performedBy(ACT, WOMAN),
- isa(ACT, 'DisplayingFn'('SexOrgan')).
- %
- tell44:16 not_true_t(subjectToCOC,WOMAN,LAW):-possible_t(subjectToCOC,WOMAN,LAW),not_true_t(agentViolatesObligation,WOMAN,LAW),true_t(lawProscribesActType,LAW,Exhibitionism),true_t(performedBy,ACT,WOMAN),isa(ACT,DisplayingFn(SexOrgan)).true_t(agentViolatesObligation,
- WOMAN,
- LAW) :-
- w_infer_by(tell44:17),
- poss(agentViolatesObligation(WOMAN, LAW)),
- lawProscribesActType(LAW, 'Exhibitionism'),
- subjectToCOC(WOMAN, LAW),
- performedBy(ACT, WOMAN),
- isa(ACT, 'DisplayingFn'('SexOrgan')).
- %
- tell44:17 true_t(agentViolatesObligation,WOMAN,LAW):-possible_t(agentViolatesObligation,WOMAN,LAW),true_t(lawProscribesActType,LAW,Exhibitionism),true_t(subjectToCOC,WOMAN,LAW),true_t(performedBy,ACT,WOMAN),isa(ACT,DisplayingFn(SexOrgan)).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ '\n(implies \n (and \n (performedBy ?ACT ?WOMAN)\n (isa ?ACT (DisplayingFn SexOrgan)) \n (lawProscribesActType ?LAW Exhibitionism) \n (subjectToCOC ?WOMAN ?LAW)) \n (and \n (isa ?ACT Exhibitionism) \n (agentViolatesObligation ?WOMAN ?LAW)))'
- ].
- pkif :-
- [ '\n(implies \n (and \n (performedBy ?ACT ?WOMAN)\n (isa ?ACT (DisplayingFn SexOrgan)) \n (lawProscribesActType ?LAW Exhibitionism) \n (subjectToCOC ?WOMAN ?LAW)) \n (and \n (isa ?ACT Exhibitionism) \n (agentViolatesObligation ?WOMAN ?LAW)))'
- ].
- cnf :-
- '\n(implies \n (and \n (performedBy ?ACT ?WOMAN)\n (isa ?ACT (DisplayingFn SexOrgan)) \n (lawProscribesActType ?LAW Exhibitionism) \n (subjectToCOC ?WOMAN ?LAW)) \n (and \n (isa ?ACT Exhibitionism) \n (agentViolatesObligation ?WOMAN ?LAW)))'.
- %
- tell45:0
- (implies
- (and
- (performedBy ?ACT ?WOMAN)
- (isa ?ACT (DisplayingFn SexOrgan))
- (lawProscribesActType ?LAW Exhibitionism)
- (subjectToCOC ?WOMAN ?LAW))
- (and
- (isa ?ACT Exhibitionism)
- (agentViolatesObligation ?WOMAN ?LAW))).
- tell45:0
- (implies
- (and
- (performedBy ?ACT ?WOMAN)
- (isa ?ACT (DisplayingFn SexOrgan))
- (lawProscribesActType ?LAW Exhibitionism)
- (subjectToCOC ?WOMAN ?LAW))
- (and
- (isa ?ACT Exhibitionism)
- (agentViolatesObligation ?WOMAN ?LAW))).pttp :-
- [ ('\n(implies \n (and \n (performedBy ?ACT ?WOMAN)\n (isa ?ACT (DisplayingFn SexOrgan)) \n (lawProscribesActType ?LAW Exhibitionism) \n (subjectToCOC ?WOMAN ?LAW)) \n (and \n (isa ?ACT Exhibitionism) \n (agentViolatesObligation ?WOMAN ?LAW)))':-true)
- ].
- %
- '\n(implies \n (and \n (performedBy ?ACT ?WOMAN)\n (isa ?ACT (DisplayingFn SexOrgan)) \n (lawProscribesActType ?LAW Exhibitionism) \n (subjectToCOC ?WOMAN ?LAW)) \n (and \n (isa ?ACT Exhibitionism) \n (agentViolatesObligation ?WOMAN ?LAW)))' :-
- w_infer_by(tell45:0),
- [].
- %
- tell45:0
- (implies
- (and
- (performedBy ?ACT ?WOMAN)
- (isa ?ACT (DisplayingFn SexOrgan))
- (lawProscribesActType ?LAW Exhibitionism)
- (subjectToCOC ?WOMAN ?LAW))
- (and
- (isa ?ACT Exhibitionism)
- (agentViolatesObligation ?WOMAN ?LAW))):-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ all[SUNBATHER],
- [ all[BEACH],
- [ not,
- [ subjectToCOC(SUNBATHER, 'KeepAreolaCoveredInPublic'),
- objectFoundInLocation(SUNBATHER, BEACH),
- isa(BEACH, 'ToplessBeach')
- ]
- ]
- ]
- ].
- pkif :-
- [ all[SUNBATHER],
- [ all[BEACH],
- [ not,
- [ subjectToCOC(SUNBATHER, 'KeepAreolaCoveredInPublic'),
- objectFoundInLocation(SUNBATHER, BEACH),
- isa(BEACH, 'ToplessBeach')
- ]
- ]
- ]
- ].
- cnf :-
- ( not(subjectToCOC(SUNBATHER, 'KeepAreolaCoveredInPublic'))
- ; not(objectFoundInLocation(SUNBATHER, BEACH))
- ; not(isa(BEACH, 'ToplessBeach'))
- ).
- %
- tell46:0 not_true_t(subjectToCOC,SUNBATHER,KeepAreolaCoveredInPublic);not_true_t(objectFoundInLocation,SUNBATHER,BEACH);not_isa(BEACH,ToplessBeach).pttp :-
- [ (not_isa(BEACH, 'ToplessBeach'):-true_t(subjectToCOC, SUNBATHER, 'KeepAreolaCoveredInPublic'), true_t(objectFoundInLocation, SUNBATHER, BEACH)),
- (not_true_t(objectFoundInLocation, SUNBATHER, BEACH):-true_t(subjectToCOC, SUNBATHER, 'KeepAreolaCoveredInPublic'), isa(BEACH, 'ToplessBeach')),
- (not_true_t(subjectToCOC, SUNBATHER, 'KeepAreolaCoveredInPublic'):-true_t(objectFoundInLocation, SUNBATHER, BEACH), isa(BEACH, 'ToplessBeach'))
- ].
- %
- not_isa(BEACH, 'ToplessBeach') :-
- w_infer_by(tell46:0),
- subjectToCOC(SUNBATHER, 'KeepAreolaCoveredInPublic'),
- objectFoundInLocation(SUNBATHER, BEACH).
- %
- tell46:0 not_isa(BEACH,ToplessBeach):-true_t(subjectToCOC,SUNBATHER,KeepAreolaCoveredInPublic),true_t(objectFoundInLocation,SUNBATHER,BEACH).not_true_t(objectFoundInLocation,
- SUNBATHER,
- BEACH) :-
- w_infer_by(tell46:1),
- subjectToCOC(SUNBATHER, 'KeepAreolaCoveredInPublic'),
- isa(BEACH, 'ToplessBeach').
- %
- tell46:1 not_true_t(objectFoundInLocation,SUNBATHER,BEACH):-true_t(subjectToCOC,SUNBATHER,KeepAreolaCoveredInPublic),isa(BEACH,ToplessBeach).not_true_t(subjectToCOC,
- SUNBATHER,
- 'KeepAreolaCoveredInPublic') :-
- w_infer_by(tell46:2),
- objectFoundInLocation(SUNBATHER, BEACH),
- isa(BEACH, 'ToplessBeach').
- %
- tell46:2 not_true_t(subjectToCOC,SUNBATHER,KeepAreolaCoveredInPublic):-true_t(objectFoundInLocation,SUNBATHER,BEACH),isa(BEACH,ToplessBeach).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ '\n(not \n (and \n (subjectToCOC ?SUNBATHER KeepAreolaCoveredInPublic) \n (objectFoundInLocation ?SUNBATHER ?BEACH) \n (isa ?BEACH ToplessBeach)))'
- ].
- pkif :-
- [ '\n(not \n (and \n (subjectToCOC ?SUNBATHER KeepAreolaCoveredInPublic) \n (objectFoundInLocation ?SUNBATHER ?BEACH) \n (isa ?BEACH ToplessBeach)))'
- ].
- cnf :-
- '\n(not \n (and \n (subjectToCOC ?SUNBATHER KeepAreolaCoveredInPublic) \n (objectFoundInLocation ?SUNBATHER ?BEACH) \n (isa ?BEACH ToplessBeach)))'.
- %
- tell47:0
- (not
- (and
- (subjectToCOC ?SUNBATHER KeepAreolaCoveredInPublic)
- (objectFoundInLocation ?SUNBATHER ?BEACH)
- (isa ?BEACH ToplessBeach))).
- tell47:0
- (not
- (and
- (subjectToCOC ?SUNBATHER KeepAreolaCoveredInPublic)
- (objectFoundInLocation ?SUNBATHER ?BEACH)
- (isa ?BEACH ToplessBeach))).pttp :-
- [ ('\n(not \n (and \n (subjectToCOC ?SUNBATHER KeepAreolaCoveredInPublic) \n (objectFoundInLocation ?SUNBATHER ?BEACH) \n (isa ?BEACH ToplessBeach)))':-true)
- ].
- %
- '\n(not \n (and \n (subjectToCOC ?SUNBATHER KeepAreolaCoveredInPublic) \n (objectFoundInLocation ?SUNBATHER ?BEACH) \n (isa ?BEACH ToplessBeach)))' :-
- w_infer_by(tell47:0),
- [].
- %
- tell47:0
- (not
- (and
- (subjectToCOC ?SUNBATHER KeepAreolaCoveredInPublic)
- (objectFoundInLocation ?SUNBATHER ?BEACH)
- (isa ?BEACH ToplessBeach))):-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ all[COC],
- [ all[WOMAN],
- [ all[ACT],
- [ implies,
- [ isa(COC, 'LegalCode-ModernWestern'),
- isa(ACT, 'Exhibitionism'),
- subjectToCOC(WOMAN, COC),
- agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic'),
- performedBy(ACT, WOMAN)
- ],
- (=>),
- [ist(COC, isa(ACT, 'CriminalAct'))]
- ]
- ]
- ]
- ].
- pkif :-
- [ implies,
- [poss(KB, ist(COC, isa(ACT, 'CriminalAct')))],
- (=>),
- [ implies,
- [poss(KB, performedBy(ACT, WOMAN))],
- (=>),
- [ implies,
- [ poss(KB,
- agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic'))
- ],
- (=>),
- [ implies,
- [poss(KB, subjectToCOC(WOMAN, COC))],
- (=>),
- [ all[COC],
- [ all[WOMAN],
- [ all[ACT],
- [ implies,
- [ isa(COC, 'LegalCode-ModernWestern'),
- isa(ACT, 'Exhibitionism'),
- subjectToCOC(WOMAN, COC),
- agentViolatesObligation(WOMAN,
- 'KeepAreolaCoveredInPublic'),
- performedBy(ACT, WOMAN)
- ],
- (=>),
- [ist(COC, isa(ACT, 'CriminalAct'))]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ].
- cnf :-
- ( not(possible_t(ist(COC, isa(ACT, 'CriminalAct'))))
- ; not(possible_t(performedBy(ACT, WOMAN)))
- ; not(possible_t(agentViolatesObligation(WOMAN,
- 'KeepAreolaCoveredInPublic')))
- ; not(possible_t(subjectToCOC(WOMAN, COC)))
- ; ist(COC, isa(ACT, 'CriminalAct'))
- ; not(isa(COC, 'LegalCode-ModernWestern'))
- ; not(isa(ACT, 'Exhibitionism'))
- ; not(subjectToCOC(WOMAN, COC))
- ; not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic'))
- ; not(performedBy(ACT, WOMAN))
- ).
- %
- tell48:0 not_possible_t(ist,COC,isa(ACT,CriminalAct));not_possible_t(performedBy,ACT,WOMAN);not_possible_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic);not_possible_t(subjectToCOC,WOMAN,COC);true_t(ist,COC,isa(ACT,CriminalAct));not_isa(COC,LegalCode-ModernWestern);not_isa(ACT,Exhibitionism);not_true_t(subjectToCOC,WOMAN,COC);not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic);not_true_t(performedBy,ACT,WOMAN).pttp :-
- [ (not_isa(ACT, 'Exhibitionism'):-possible_t(ist, COC, isa(ACT, 'CriminalAct')), possible_t(performedBy, ACT, WOMAN), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(subjectToCOC, WOMAN, COC), not_true_t(ist, COC, isa(ACT, 'CriminalAct')), isa(COC, 'LegalCode-ModernWestern'), true_t(subjectToCOC, WOMAN, COC), true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(performedBy, ACT, WOMAN)),
- (not_isa(COC, 'LegalCode-ModernWestern'):-possible_t(ist, COC, isa(ACT, 'CriminalAct')), possible_t(performedBy, ACT, WOMAN), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(subjectToCOC, WOMAN, COC), not_true_t(ist, COC, isa(ACT, 'CriminalAct')), isa(ACT, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, COC), true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(performedBy, ACT, WOMAN)),
- (not_possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'):-possible_t(ist, COC, isa(ACT, 'CriminalAct')), possible_t(performedBy, ACT, WOMAN), possible_t(subjectToCOC, WOMAN, COC), not_true_t(ist, COC, isa(ACT, 'CriminalAct')), isa(COC, 'LegalCode-ModernWestern'), isa(ACT, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, COC), true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(performedBy, ACT, WOMAN)),
- (not_possible_t(ist, COC, isa(ACT, 'CriminalAct')):-possible_t(performedBy, ACT, WOMAN), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(subjectToCOC, WOMAN, COC), not_true_t(ist, COC, isa(ACT, 'CriminalAct')), isa(COC, 'LegalCode-ModernWestern'), isa(ACT, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, COC), true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(performedBy, ACT, WOMAN)),
- (not_possible_t(performedBy, ACT, WOMAN):-possible_t(ist, COC, isa(ACT, 'CriminalAct')), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(subjectToCOC, WOMAN, COC), not_true_t(ist, COC, isa(ACT, 'CriminalAct')), isa(COC, 'LegalCode-ModernWestern'), isa(ACT, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, COC), true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(performedBy, ACT, WOMAN)),
- (not_possible_t(subjectToCOC, WOMAN, COC):-possible_t(ist, COC, isa(ACT, 'CriminalAct')), possible_t(performedBy, ACT, WOMAN), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), not_true_t(ist, COC, isa(ACT, 'CriminalAct')), isa(COC, 'LegalCode-ModernWestern'), isa(ACT, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, COC), true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(performedBy, ACT, WOMAN)),
- (not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'):-possible_t(ist, COC, isa(ACT, 'CriminalAct')), possible_t(performedBy, ACT, WOMAN), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(subjectToCOC, WOMAN, COC), not_true_t(ist, COC, isa(ACT, 'CriminalAct')), isa(COC, 'LegalCode-ModernWestern'), isa(ACT, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, COC), true_t(performedBy, ACT, WOMAN)),
- (not_true_t(performedBy, ACT, WOMAN):-possible_t(ist, COC, isa(ACT, 'CriminalAct')), possible_t(performedBy, ACT, WOMAN), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(subjectToCOC, WOMAN, COC), not_true_t(ist, COC, isa(ACT, 'CriminalAct')), isa(COC, 'LegalCode-ModernWestern'), isa(ACT, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, COC), true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic')),
- (not_true_t(subjectToCOC, WOMAN, COC):-possible_t(ist, COC, isa(ACT, 'CriminalAct')), possible_t(performedBy, ACT, WOMAN), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(subjectToCOC, WOMAN, COC), not_true_t(ist, COC, isa(ACT, 'CriminalAct')), isa(COC, 'LegalCode-ModernWestern'), isa(ACT, 'Exhibitionism'), true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(performedBy, ACT, WOMAN)),
- (true_t(ist, COC, isa(ACT, 'CriminalAct')):-possible_t(ist, COC, isa(ACT, 'CriminalAct')), possible_t(performedBy, ACT, WOMAN), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(subjectToCOC, WOMAN, COC), isa(COC, 'LegalCode-ModernWestern'), isa(ACT, 'Exhibitionism'), true_t(subjectToCOC, WOMAN, COC), true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(performedBy, ACT, WOMAN))
- ].
- %
- not_isa(ACT, 'Exhibitionism') :-
- w_infer_by(tell48:0),
- not(ist(COC, isa(ACT, 'CriminalAct'))),
- isa(COC, 'LegalCode-ModernWestern'),
- agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic'),
- performedBy(ACT, WOMAN),
- subjectToCOC(WOMAN, COC).
- %
- ;tell48:0 not_isa(ACT,Exhibitionism):-not_true_t(ist,COC,isa(ACT,CriminalAct)),isa(COC,LegalCode-ModernWestern),true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),true_t(performedBy,ACT,WOMAN),true_t(subjectToCOC,WOMAN,COC).not_isa(COC,
- 'LegalCode-ModernWestern') :-
- w_infer_by(tell48:1),
- not(ist(COC, isa(ACT, 'CriminalAct'))),
- isa(ACT, 'Exhibitionism'),
- subjectToCOC(WOMAN, COC),
- agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic'),
- performedBy(ACT, WOMAN).
- %
- tell48:1 not_isa(COC,LegalCode-ModernWestern):-not_true_t(ist,COC,isa(ACT,CriminalAct)),isa(ACT,Exhibitionism),true_t(subjectToCOC,WOMAN,COC),true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),true_t(performedBy,ACT,WOMAN).not_possible_t(agentViolatesObligation,
- WOMAN,
- 'KeepAreolaCoveredInPublic') :-
- w_infer_by(tell48:2),
- agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic'),
- isa(COC, 'LegalCode-ModernWestern'),
- isa(ACT, 'Exhibitionism'),
- subjectToCOC(WOMAN, COC),
- performedBy(ACT, WOMAN),
- not(ist(COC, isa(ACT, 'CriminalAct'))).
- %
- ;tell48:2 not_possible_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic):-true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),isa(COC,LegalCode-ModernWestern),isa(ACT,Exhibitionism),true_t(subjectToCOC,WOMAN,COC),true_t(performedBy,ACT,WOMAN),not_true_t(ist,COC,isa(ACT,CriminalAct)).not_possible_t(ist,
- COC,
- isa(ACT,
- 'CriminalAct')) :-
- w_infer_by(tell48:3),
- not(ist(COC, isa(ACT, 'CriminalAct'))),
- isa(COC, 'LegalCode-ModernWestern'),
- isa(ACT, 'Exhibitionism'),
- subjectToCOC(WOMAN, COC),
- agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic'),
- performedBy(ACT, WOMAN).
- %
- tell48:3 not_possible_t(ist,COC,isa(ACT,CriminalAct)):-not_true_t(ist,COC,isa(ACT,CriminalAct)),isa(COC,LegalCode-ModernWestern),isa(ACT,Exhibitionism),true_t(subjectToCOC,WOMAN,COC),true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),true_t(performedBy,ACT,WOMAN).not_possible_t(performedBy,
- ACT,
- WOMAN) :-
- w_infer_by(tell48:4),
- isa(ACT, 'Exhibitionism'),
- agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic'),
- performedBy(ACT, WOMAN),
- not(ist(COC, isa(ACT, 'CriminalAct'))),
- isa(COC, 'LegalCode-ModernWestern'),
- subjectToCOC(WOMAN, COC).
- %
- tell48:4 not_possible_t(performedBy,ACT,WOMAN):-isa(ACT,Exhibitionism),true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),true_t(performedBy,ACT,WOMAN),not_true_t(ist,COC,isa(ACT,CriminalAct)),isa(COC,LegalCode-ModernWestern),true_t(subjectToCOC,WOMAN,COC).not_possible_t(subjectToCOC,
- WOMAN,
- COC) :-
- w_infer_by(tell48:5),
- isa(COC, 'LegalCode-ModernWestern'),
- subjectToCOC(WOMAN, COC),
- agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic'),
- not(ist(COC, isa(ACT, 'CriminalAct'))),
- isa(ACT, 'Exhibitionism'),
- performedBy(ACT, WOMAN).
- %
- tell48:5 not_possible_t(subjectToCOC,WOMAN,COC):-isa(COC,LegalCode-ModernWestern),true_t(subjectToCOC,WOMAN,COC),true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),not_true_t(ist,COC,isa(ACT,CriminalAct)),isa(ACT,Exhibitionism),true_t(performedBy,ACT,WOMAN).not_true_t(agentViolatesObligation,
- WOMAN,
- 'KeepAreolaCoveredInPublic') :-
- w_infer_by(tell48:6),
- poss(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')),
- isa(COC, 'LegalCode-ModernWestern'),
- isa(ACT, 'Exhibitionism'),
- subjectToCOC(WOMAN, COC),
- performedBy(ACT, WOMAN),
- not(ist(COC, isa(ACT, 'CriminalAct'))).
- %
- tell48:6 not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic):-possible_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),isa(COC,LegalCode-ModernWestern),isa(ACT,Exhibitionism),true_t(subjectToCOC,WOMAN,COC),true_t(performedBy,ACT,WOMAN),not_true_t(ist,COC,isa(ACT,CriminalAct)).not_true_t(performedBy,
- ACT,
- WOMAN) :-
- w_infer_by(tell48:7),
- poss(performedBy(ACT, WOMAN)),
- isa(ACT, 'Exhibitionism'),
- agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic'),
- not(ist(COC, isa(ACT, 'CriminalAct'))),
- isa(COC, 'LegalCode-ModernWestern'),
- subjectToCOC(WOMAN, COC).
- %
- tell48:7 not_true_t(performedBy,ACT,WOMAN):-possible_t(performedBy,ACT,WOMAN),isa(ACT,Exhibitionism),true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),not_true_t(ist,COC,isa(ACT,CriminalAct)),isa(COC,LegalCode-ModernWestern),true_t(subjectToCOC,WOMAN,COC).not_true_t(subjectToCOC,
- WOMAN,
- COC) :-
- w_infer_by(tell48:8),
- poss(subjectToCOC(WOMAN, COC)),
- isa(COC, 'LegalCode-ModernWestern'),
- agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic'),
- not(ist(COC, isa(ACT, 'CriminalAct'))),
- isa(ACT, 'Exhibitionism'),
- performedBy(ACT, WOMAN).
- %
- tell48:8 not_true_t(subjectToCOC,WOMAN,COC):-possible_t(subjectToCOC,WOMAN,COC),isa(COC,LegalCode-ModernWestern),true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),not_true_t(ist,COC,isa(ACT,CriminalAct)),isa(ACT,Exhibitionism),true_t(performedBy,ACT,WOMAN).true_t(ist,
- COC,
- isa(ACT,
- 'CriminalAct')) :-
- w_infer_by(tell48:9),
- poss(ist(COC, isa(ACT, 'CriminalAct'))),
- isa(COC, 'LegalCode-ModernWestern'),
- isa(ACT, 'Exhibitionism'),
- subjectToCOC(WOMAN, COC),
- agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic'),
- performedBy(ACT, WOMAN).
- %
- tell48:9 true_t(ist,COC,isa(ACT,CriminalAct)):-possible_t(ist,COC,isa(ACT,CriminalAct)),isa(COC,LegalCode-ModernWestern),isa(ACT,Exhibitionism),true_t(subjectToCOC,WOMAN,COC),true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),true_t(performedBy,ACT,WOMAN).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ '\n(implies \n (and \n (isa ?COC LegalCode-ModernWestern) \n (isa ?ACT Exhibitionism) \n (subjectToCOC ?WOMAN ?COC)\n (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic) \n (performedBy ?ACT ?WOMAN)) \n (ist ?COC \n (isa ?ACT CriminalAct)))'
- ].
- pkif :-
- [ '\n(implies \n (and \n (isa ?COC LegalCode-ModernWestern) \n (isa ?ACT Exhibitionism) \n (subjectToCOC ?WOMAN ?COC)\n (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic) \n (performedBy ?ACT ?WOMAN)) \n (ist ?COC \n (isa ?ACT CriminalAct)))'
- ].
- cnf :-
- '\n(implies \n (and \n (isa ?COC LegalCode-ModernWestern) \n (isa ?ACT Exhibitionism) \n (subjectToCOC ?WOMAN ?COC)\n (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic) \n (performedBy ?ACT ?WOMAN)) \n (ist ?COC \n (isa ?ACT CriminalAct)))'.
- %
- tell49:0
- (implies
- (and
- (isa ?COC LegalCode-ModernWestern)
- (isa ?ACT Exhibitionism)
- (subjectToCOC ?WOMAN ?COC)
- (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic)
- (performedBy ?ACT ?WOMAN))
- (ist ?COC
- (isa ?ACT CriminalAct))).
- tell49:0
- (implies
- (and
- (isa ?COC LegalCode-ModernWestern)
- (isa ?ACT Exhibitionism)
- (subjectToCOC ?WOMAN ?COC)
- (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic)
- (performedBy ?ACT ?WOMAN))
- (ist ?COC
- (isa ?ACT CriminalAct))).pttp :-
- [ ('\n(implies \n (and \n (isa ?COC LegalCode-ModernWestern) \n (isa ?ACT Exhibitionism) \n (subjectToCOC ?WOMAN ?COC)\n (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic) \n (performedBy ?ACT ?WOMAN)) \n (ist ?COC \n (isa ?ACT CriminalAct)))':-true)
- ].
- %
- '\n(implies \n (and \n (isa ?COC LegalCode-ModernWestern) \n (isa ?ACT Exhibitionism) \n (subjectToCOC ?WOMAN ?COC)\n (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic) \n (performedBy ?ACT ?WOMAN)) \n (ist ?COC \n (isa ?ACT CriminalAct)))' :-
- w_infer_by(tell49:0),
- [].
- %
- tell49:0
- (implies
- (and
- (isa ?COC LegalCode-ModernWestern)
- (isa ?ACT Exhibitionism)
- (subjectToCOC ?WOMAN ?COC)
- (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic)
- (performedBy ?ACT ?WOMAN))
- (ist ?COC
- (isa ?ACT CriminalAct))):-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ all[WOMAN],
- [ all[AREOLA],
- [ implies,
- [ isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'),
- locationState(WOMAN, 'InPublic')
- ],
- (=>),
- [ ex[CLOTH],
- [ or,
- agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic'),
- 'covers-Generic'(CLOTH, AREOLA),
- wearsClothing(WOMAN, CLOTH)
- ]
- ]
- ]
- ]
- ].
- pkif :-
- [ implies,
- [poss(KB, wearsClothing(WOMAN, CLOTH))],
- (=>),
- [ implies,
- [poss(KB, 'covers-Generic'(CLOTH, AREOLA))],
- (=>),
- [ implies,
- [ poss(KB,
- agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic'))
- ],
- (=>),
- [ implies,
- [poss(KB, locationState(WOMAN, 'InPublic'))],
- (=>),
- [ implies,
- [poss(KB, subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'))],
- (=>),
- [ all[WOMAN],
- [ all[AREOLA],
- [ implies,
- [ isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'),
- locationState(WOMAN, 'InPublic')
- ],
- (=>),
- [ ex[CLOTH],
- [ or,
- agentViolatesObligation(WOMAN,
- 'KeepAreolaCoveredInPublic'),
- 'covers-Generic'(CLOTH, AREOLA),
- wearsClothing(WOMAN, CLOTH)
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ].
- cnf :-
- ( not(possible_t(wearsClothing(WOMAN, CLOTH)))
- ; not(possible_t('covers-Generic'(CLOTH, AREOLA)))
- ; not(possible_t(agentViolatesObligation(WOMAN,
- 'KeepAreolaCoveredInPublic')))
- ; not(possible_t(locationState(WOMAN, 'InPublic')))
- ; not(possible_t(subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic')))
- ; not(isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')))
- ; not(subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'))
- ; not(locationState(WOMAN, 'InPublic'))
- ; not(skolem(CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,
- WOMAN)))
- ; agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')
- ; 'covers-Generic'(CLOTH, AREOLA)
- ),
- ( not(possible_t(wearsClothing(WOMAN, CLOTH)))
- ; not(possible_t('covers-Generic'(CLOTH, AREOLA)))
- ; not(possible_t(agentViolatesObligation(WOMAN,
- 'KeepAreolaCoveredInPublic')))
- ; not(possible_t(locationState(WOMAN, 'InPublic')))
- ; not(possible_t(subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic')))
- ; not(isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')))
- ; not(subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'))
- ; not(locationState(WOMAN, 'InPublic'))
- ; not(skolem(CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,
- WOMAN)))
- ; agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')
- ; wearsClothing(WOMAN, CLOTH)
- ).
- %
- tell50:0 not_possible_t(wearsClothing,WOMAN,CLOTH);not_possible_t(covers-Generic,CLOTH,AREOLA);not_possible_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic);not_possible_t(locationState,WOMAN,InPublic);not_possible_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic);not_isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola));not_true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic);not_true_t(locationState,WOMAN,InPublic);not_call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN));true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic);true_t(covers-Generic,CLOTH,AREOLA).
- % todo(warn(builtin_why(wearsClothing,
- % 2,
- % source_file('/opt/PrologMUD/pack/prologmud/prolog/prologmud/server/mud_builtin.pl')))).
- %
- % todo(warn(pttp_builtin(wearsClothing, 2))).
- %
- tell50:1 not_possible_t(wearsClothing,WOMAN,CLOTH);not_possible_t(covers-Generic,CLOTH,AREOLA);not_possible_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic);not_possible_t(locationState,WOMAN,InPublic);not_possible_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic);not_isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola));not_true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic);not_true_t(locationState,WOMAN,InPublic);not_call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN));true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic);call_builtin(wearsClothing,WOMAN,CLOTH).pttp :-
- [ (not_isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')):-possible_t(wearsClothing, WOMAN, CLOTH), possible_t('covers-Generic', CLOTH, AREOLA), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(locationState, WOMAN, 'InPublic'), possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(locationState, WOMAN, 'InPublic'), call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), not_call_builtin(wearsClothing, WOMAN, CLOTH)),
- (not_isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')):-possible_t(wearsClothing, WOMAN, CLOTH), possible_t('covers-Generic', CLOTH, AREOLA), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(locationState, WOMAN, 'InPublic'), possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(locationState, WOMAN, 'InPublic'), call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), not_true_t('covers-Generic', CLOTH, AREOLA)),
- (call_builtin(wearsClothing, WOMAN, CLOTH):-possible_t(wearsClothing, WOMAN, CLOTH), possible_t('covers-Generic', CLOTH, AREOLA), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(locationState, WOMAN, 'InPublic'), possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')), true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(locationState, WOMAN, 'InPublic'), call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic')),
- (not_call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)):-possible_t(wearsClothing, WOMAN, CLOTH), possible_t('covers-Generic', CLOTH, AREOLA), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(locationState, WOMAN, 'InPublic'), possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')), true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(locationState, WOMAN, 'InPublic'), not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), not_call_builtin(wearsClothing, WOMAN, CLOTH)),
- (not_call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)):-possible_t(wearsClothing, WOMAN, CLOTH), possible_t('covers-Generic', CLOTH, AREOLA), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(locationState, WOMAN, 'InPublic'), possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')), true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(locationState, WOMAN, 'InPublic'), not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), not_true_t('covers-Generic', CLOTH, AREOLA)),
- (not_possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'):-possible_t(wearsClothing, WOMAN, CLOTH), possible_t('covers-Generic', CLOTH, AREOLA), possible_t(locationState, WOMAN, 'InPublic'), possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')), true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(locationState, WOMAN, 'InPublic'), call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), not_call_builtin(wearsClothing, WOMAN, CLOTH)),
- (not_possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'):-possible_t(wearsClothing, WOMAN, CLOTH), possible_t('covers-Generic', CLOTH, AREOLA), possible_t(locationState, WOMAN, 'InPublic'), possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')), true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(locationState, WOMAN, 'InPublic'), call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), not_true_t('covers-Generic', CLOTH, AREOLA)),
- (not_possible_t('covers-Generic', CLOTH, AREOLA):-possible_t(wearsClothing, WOMAN, CLOTH), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(locationState, WOMAN, 'InPublic'), possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')), true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(locationState, WOMAN, 'InPublic'), call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), not_call_builtin(wearsClothing, WOMAN, CLOTH)),
- (not_possible_t('covers-Generic', CLOTH, AREOLA):-possible_t(wearsClothing, WOMAN, CLOTH), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(locationState, WOMAN, 'InPublic'), possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')), true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(locationState, WOMAN, 'InPublic'), call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), not_true_t('covers-Generic', CLOTH, AREOLA)),
- (not_possible_t(locationState, WOMAN, 'InPublic'):-possible_t(wearsClothing, WOMAN, CLOTH), possible_t('covers-Generic', CLOTH, AREOLA), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')), true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(locationState, WOMAN, 'InPublic'), call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), not_call_builtin(wearsClothing, WOMAN, CLOTH)),
- (not_possible_t(locationState, WOMAN, 'InPublic'):-possible_t(wearsClothing, WOMAN, CLOTH), possible_t('covers-Generic', CLOTH, AREOLA), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')), true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(locationState, WOMAN, 'InPublic'), call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), not_true_t('covers-Generic', CLOTH, AREOLA)),
- (not_possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'):-possible_t(wearsClothing, WOMAN, CLOTH), possible_t('covers-Generic', CLOTH, AREOLA), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(locationState, WOMAN, 'InPublic'), isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')), true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(locationState, WOMAN, 'InPublic'), call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), not_call_builtin(wearsClothing, WOMAN, CLOTH)),
- (not_possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'):-possible_t(wearsClothing, WOMAN, CLOTH), possible_t('covers-Generic', CLOTH, AREOLA), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(locationState, WOMAN, 'InPublic'), isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')), true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(locationState, WOMAN, 'InPublic'), call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), not_true_t('covers-Generic', CLOTH, AREOLA)),
- (not_possible_t(wearsClothing, WOMAN, CLOTH):-possible_t('covers-Generic', CLOTH, AREOLA), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(locationState, WOMAN, 'InPublic'), possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')), true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(locationState, WOMAN, 'InPublic'), call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), not_call_builtin(wearsClothing, WOMAN, CLOTH)),
- (not_possible_t(wearsClothing, WOMAN, CLOTH):-possible_t('covers-Generic', CLOTH, AREOLA), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(locationState, WOMAN, 'InPublic'), possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')), true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(locationState, WOMAN, 'InPublic'), call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), not_true_t('covers-Generic', CLOTH, AREOLA)),
- (not_true_t(locationState, WOMAN, 'InPublic'):-possible_t(wearsClothing, WOMAN, CLOTH), possible_t('covers-Generic', CLOTH, AREOLA), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(locationState, WOMAN, 'InPublic'), possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')), true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), not_call_builtin(wearsClothing, WOMAN, CLOTH)),
- (not_true_t(locationState, WOMAN, 'InPublic'):-possible_t(wearsClothing, WOMAN, CLOTH), possible_t('covers-Generic', CLOTH, AREOLA), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(locationState, WOMAN, 'InPublic'), possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')), true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), not_true_t('covers-Generic', CLOTH, AREOLA)),
- (not_true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'):-possible_t(wearsClothing, WOMAN, CLOTH), possible_t('covers-Generic', CLOTH, AREOLA), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(locationState, WOMAN, 'InPublic'), possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')), true_t(locationState, WOMAN, 'InPublic'), call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), not_call_builtin(wearsClothing, WOMAN, CLOTH)),
- (not_true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'):-possible_t(wearsClothing, WOMAN, CLOTH), possible_t('covers-Generic', CLOTH, AREOLA), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(locationState, WOMAN, 'InPublic'), possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')), true_t(locationState, WOMAN, 'InPublic'), call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), not_true_t('covers-Generic', CLOTH, AREOLA)),
- (true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'):-possible_t(wearsClothing, WOMAN, CLOTH), possible_t('covers-Generic', CLOTH, AREOLA), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(locationState, WOMAN, 'InPublic'), possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')), true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(locationState, WOMAN, 'InPublic'), call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not_call_builtin(wearsClothing, WOMAN, CLOTH)),
- (true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'):-possible_t(wearsClothing, WOMAN, CLOTH), possible_t('covers-Generic', CLOTH, AREOLA), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(locationState, WOMAN, 'InPublic'), possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')), true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(locationState, WOMAN, 'InPublic'), call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not_true_t('covers-Generic', CLOTH, AREOLA)),
- (true_t('covers-Generic', CLOTH, AREOLA):-possible_t(wearsClothing, WOMAN, CLOTH), possible_t('covers-Generic', CLOTH, AREOLA), possible_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'), possible_t(locationState, WOMAN, 'InPublic'), possible_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')), true_t(subjectToCOC, WOMAN, 'KeepAreolaCoveredInPublic'), true_t(locationState, WOMAN, 'InPublic'), call_builtin(skolem, CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not_true_t(agentViolatesObligation, WOMAN, 'KeepAreolaCoveredInPublic'))
- ].
- %
- not(isa(AREOLA, BODYPARTCOLLECTIONFNAREOLA1)):not(mudEquals(BODYPARTCOLLECTIONFNAREOLA1, 'BodyPartCollectionFn'(WOMAN, 'Areola')), (poss(wearsClothing(WOMAN, CLOTH)), poss('covers-Generic'(CLOTH, AREOLA)), subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'), locationState(WOMAN, 'InPublic'), skolem(CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')), not(wearsClothing(WOMAN, CLOTH)))) :-
- w_infer_by(tell50:0).
- %
- tell50:0 true_t(:,not_isa(AREOLA,BODYPARTCOLLECTIONFNAREOLA1),mudEquals(BODYPARTCOLLECTIONFNAREOLA1,BodyPartCollectionFn(WOMAN,Areola))- (possible_t(wearsClothing,WOMAN,CLOTH),possible_t(covers-Generic,CLOTH,AREOLA),true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),not_call_builtin(wearsClothing,WOMAN,CLOTH))).
- tell50:0 true_t(:,not_isa(AREOLA,BODYPARTCOLLECTIONFNAREOLA1),mudEquals(BODYPARTCOLLECTIONFNAREOLA1,BodyPartCollectionFn(WOMAN,Areola))- (possible_t(wearsClothing,WOMAN,CLOTH),possible_t(covers-Generic,CLOTH,AREOLA),true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),not_call_builtin(wearsClothing,WOMAN,CLOTH))).not(isa(AREOLA, BODYPARTCOLLECTIONFNAREOLA2)):not(mudEquals(BODYPARTCOLLECTIONFNAREOLA2, 'BodyPartCollectionFn'(WOMAN, 'Areola')), (poss(wearsClothing(WOMAN, CLOTH)), subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'), locationState(WOMAN, 'InPublic'), skolem(CLOTH, skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)), not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')), not('covers-Generic'(CLOTH, AREOLA)))) :-
- w_infer_by(tell50:1).
- %
- tell50:1 true_t(:,not_isa(AREOLA,BODYPARTCOLLECTIONFNAREOLA2),mudEquals(BODYPARTCOLLECTIONFNAREOLA2,BodyPartCollectionFn(WOMAN,Areola))- (possible_t(wearsClothing,WOMAN,CLOTH),true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),not_true_t(covers-Generic,CLOTH,AREOLA))).
- tell50:1 true_t(:,not_isa(AREOLA,BODYPARTCOLLECTIONFNAREOLA2),mudEquals(BODYPARTCOLLECTIONFNAREOLA2,BodyPartCollectionFn(WOMAN,Areola))- (possible_t(wearsClothing,WOMAN,CLOTH),true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),not_true_t(covers-Generic,CLOTH,AREOLA))).call_builtin(wearsClothing,
- WOMAN,
- CLOTH) :-
- w_infer_by(tell50:2),
- poss(wearsClothing(WOMAN, CLOTH)),
- subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'),
- locationState(WOMAN, 'InPublic'),
- not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')),
- poss('covers-Generic'(CLOTH, AREOLA)),
- isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- skolem(CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)).
- %
- tell50:2 call_builtin(wearsClothing,WOMAN,CLOTH):-possible_t(wearsClothing,WOMAN,CLOTH),true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),possible_t(covers-Generic,CLOTH,AREOLA),isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola)),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)).not_call_builtin(skolem,
- CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,
- WOMAN)) :-
- w_infer_by(tell50:3),
- poss(wearsClothing(WOMAN, CLOTH)),
- poss('covers-Generic'(CLOTH, AREOLA)),
- isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'),
- locationState(WOMAN, 'InPublic'),
- not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')),
- not(wearsClothing(WOMAN, CLOTH)).
- %
- tell50:3 not_call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)):-possible_t(wearsClothing,WOMAN,CLOTH),possible_t(covers-Generic,CLOTH,AREOLA),isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola)),true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),not_call_builtin(wearsClothing,WOMAN,CLOTH).not_call_builtin(skolem,
- CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,
- WOMAN)) :-
- w_infer_by(tell50:4),
- poss(wearsClothing(WOMAN, CLOTH)),
- isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'),
- locationState(WOMAN, 'InPublic'),
- not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')),
- not('covers-Generic'(CLOTH, AREOLA)).
- %
- tell50:4 not_call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)):-possible_t(wearsClothing,WOMAN,CLOTH),isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola)),true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),not_true_t(covers-Generic,CLOTH,AREOLA).not_possible_t(agentViolatesObligation,
- WOMAN,
- 'KeepAreolaCoveredInPublic') :-
- w_infer_by(tell50:5),
- subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'),
- locationState(WOMAN, 'InPublic'),
- not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')),
- poss(wearsClothing(WOMAN, CLOTH)),
- isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- not(wearsClothing(WOMAN, CLOTH)),
- poss('covers-Generic'(CLOTH, AREOLA)),
- skolem(CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)).
- %
- tell50:5 not_possible_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic):-true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),possible_t(wearsClothing,WOMAN,CLOTH),isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola)),not_call_builtin(wearsClothing,WOMAN,CLOTH),possible_t(covers-Generic,CLOTH,AREOLA),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)).not_possible_t(agentViolatesObligation,
- WOMAN,
- 'KeepAreolaCoveredInPublic') :-
- w_infer_by(tell50:6),
- subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'),
- locationState(WOMAN, 'InPublic'),
- not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')),
- poss(wearsClothing(WOMAN, CLOTH)),
- isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- skolem(CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)),
- not('covers-Generic'(CLOTH, AREOLA)).
- %
- tell50:6 not_possible_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic):-true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),possible_t(wearsClothing,WOMAN,CLOTH),isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola)),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)),not_true_t(covers-Generic,CLOTH,AREOLA).not_possible_t('covers-Generic',
- CLOTH,
- AREOLA) :-
- w_infer_by(tell50:7),
- poss(wearsClothing(WOMAN, CLOTH)),
- isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'),
- locationState(WOMAN, 'InPublic'),
- skolem(CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)),
- not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')),
- not(wearsClothing(WOMAN, CLOTH)).
- %
- tell50:7 not_possible_t(covers-Generic,CLOTH,AREOLA):-possible_t(wearsClothing,WOMAN,CLOTH),isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola)),true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),not_call_builtin(wearsClothing,WOMAN,CLOTH).not_possible_t('covers-Generic',
- CLOTH,
- AREOLA) :-
- w_infer_by(tell50:8),
- not('covers-Generic'(CLOTH, AREOLA)),
- poss(wearsClothing(WOMAN, CLOTH)),
- isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'),
- locationState(WOMAN, 'InPublic'),
- skolem(CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)),
- not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')).
- %
- tell50:8 not_possible_t(covers-Generic,CLOTH,AREOLA):-not_true_t(covers-Generic,CLOTH,AREOLA),possible_t(wearsClothing,WOMAN,CLOTH),isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola)),true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic).not_possible_t(locationState,
- WOMAN,
- 'InPublic') :-
- w_infer_by(tell50:9),
- subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'),
- locationState(WOMAN, 'InPublic'),
- not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')),
- poss(wearsClothing(WOMAN, CLOTH)),
- isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- not(wearsClothing(WOMAN, CLOTH)),
- poss('covers-Generic'(CLOTH, AREOLA)),
- skolem(CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)).
- %
- tell50:9 not_possible_t(locationState,WOMAN,InPublic):-true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),possible_t(wearsClothing,WOMAN,CLOTH),isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola)),not_call_builtin(wearsClothing,WOMAN,CLOTH),possible_t(covers-Generic,CLOTH,AREOLA),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)).not_possible_t(locationState,
- WOMAN,
- 'InPublic') :-
- w_infer_by(tell50:10),
- subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'),
- locationState(WOMAN, 'InPublic'),
- not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')),
- poss(wearsClothing(WOMAN, CLOTH)),
- isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- skolem(CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)),
- not('covers-Generic'(CLOTH, AREOLA)).
- %
- tell50:10 not_possible_t(locationState,WOMAN,InPublic):-true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),possible_t(wearsClothing,WOMAN,CLOTH),isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola)),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)),not_true_t(covers-Generic,CLOTH,AREOLA).not_possible_t(subjectToCOC,
- WOMAN,
- 'KeepAreolaCoveredInPublic') :-
- w_infer_by(tell50:11),
- subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'),
- locationState(WOMAN, 'InPublic'),
- not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')),
- poss(wearsClothing(WOMAN, CLOTH)),
- isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- not(wearsClothing(WOMAN, CLOTH)),
- poss('covers-Generic'(CLOTH, AREOLA)),
- skolem(CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)).
- %
- tell50:11 not_possible_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic):-true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),possible_t(wearsClothing,WOMAN,CLOTH),isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola)),not_call_builtin(wearsClothing,WOMAN,CLOTH),possible_t(covers-Generic,CLOTH,AREOLA),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)).not_possible_t(subjectToCOC,
- WOMAN,
- 'KeepAreolaCoveredInPublic') :-
- w_infer_by(tell50:12),
- subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'),
- locationState(WOMAN, 'InPublic'),
- not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')),
- poss(wearsClothing(WOMAN, CLOTH)),
- isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- skolem(CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)),
- not('covers-Generic'(CLOTH, AREOLA)).
- %
- tell50:12 not_possible_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic):-true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),possible_t(wearsClothing,WOMAN,CLOTH),isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola)),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)),not_true_t(covers-Generic,CLOTH,AREOLA).not_possible_t(wearsClothing,
- WOMAN,
- CLOTH) :-
- w_infer_by(tell50:13),
- subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'),
- locationState(WOMAN, 'InPublic'),
- not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')),
- not(wearsClothing(WOMAN, CLOTH)),
- poss('covers-Generic'(CLOTH, AREOLA)),
- isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- skolem(CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)).
- %
- tell50:13 not_possible_t(wearsClothing,WOMAN,CLOTH):-true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),not_call_builtin(wearsClothing,WOMAN,CLOTH),possible_t(covers-Generic,CLOTH,AREOLA),isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola)),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)).not_possible_t(wearsClothing,
- WOMAN,
- CLOTH) :-
- w_infer_by(tell50:14),
- subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'),
- locationState(WOMAN, 'InPublic'),
- not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')),
- isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- skolem(CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)),
- not('covers-Generic'(CLOTH, AREOLA)).
- %
- tell50:14 not_possible_t(wearsClothing,WOMAN,CLOTH):-true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola)),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)),not_true_t(covers-Generic,CLOTH,AREOLA).not_true_t(locationState,
- WOMAN,
- 'InPublic') :-
- w_infer_by(tell50:15),
- poss(locationState(WOMAN, 'InPublic')),
- subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'),
- not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')),
- poss(wearsClothing(WOMAN, CLOTH)),
- isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- not(wearsClothing(WOMAN, CLOTH)),
- poss('covers-Generic'(CLOTH, AREOLA)),
- skolem(CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)).
- %
- tell50:15 not_true_t(locationState,WOMAN,InPublic):-possible_t(locationState,WOMAN,InPublic),true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),possible_t(wearsClothing,WOMAN,CLOTH),isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola)),not_call_builtin(wearsClothing,WOMAN,CLOTH),possible_t(covers-Generic,CLOTH,AREOLA),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)).not_true_t(locationState,
- WOMAN,
- 'InPublic') :-
- w_infer_by(tell50:16),
- poss(locationState(WOMAN, 'InPublic')),
- subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'),
- not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')),
- poss(wearsClothing(WOMAN, CLOTH)),
- isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- skolem(CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)),
- not('covers-Generic'(CLOTH, AREOLA)).
- %
- tell50:16 not_true_t(locationState,WOMAN,InPublic):-possible_t(locationState,WOMAN,InPublic),true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),possible_t(wearsClothing,WOMAN,CLOTH),isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola)),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)),not_true_t(covers-Generic,CLOTH,AREOLA).not_true_t(subjectToCOC,
- WOMAN,
- 'KeepAreolaCoveredInPublic') :-
- w_infer_by(tell50:17),
- poss(subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic')),
- locationState(WOMAN, 'InPublic'),
- not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')),
- poss(wearsClothing(WOMAN, CLOTH)),
- isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- not(wearsClothing(WOMAN, CLOTH)),
- poss('covers-Generic'(CLOTH, AREOLA)),
- skolem(CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)).
- %
- tell50:17 not_true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic):-possible_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),possible_t(wearsClothing,WOMAN,CLOTH),isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola)),not_call_builtin(wearsClothing,WOMAN,CLOTH),possible_t(covers-Generic,CLOTH,AREOLA),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)).not_true_t(subjectToCOC,
- WOMAN,
- 'KeepAreolaCoveredInPublic') :-
- w_infer_by(tell50:18),
- poss(subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic')),
- locationState(WOMAN, 'InPublic'),
- not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')),
- poss(wearsClothing(WOMAN, CLOTH)),
- isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- skolem(CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)),
- not('covers-Generic'(CLOTH, AREOLA)).
- %
- tell50:18 not_true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic):-possible_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),possible_t(wearsClothing,WOMAN,CLOTH),isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola)),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)),not_true_t(covers-Generic,CLOTH,AREOLA).true_t(agentViolatesObligation,
- WOMAN,
- 'KeepAreolaCoveredInPublic') :-
- w_infer_by(tell50:19),
- poss(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')),
- subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'),
- locationState(WOMAN, 'InPublic'),
- poss(wearsClothing(WOMAN, CLOTH)),
- isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- not(wearsClothing(WOMAN, CLOTH)),
- poss('covers-Generic'(CLOTH, AREOLA)),
- skolem(CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)).
- %
- tell50:19 true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic):-possible_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),possible_t(wearsClothing,WOMAN,CLOTH),isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola)),not_call_builtin(wearsClothing,WOMAN,CLOTH),possible_t(covers-Generic,CLOTH,AREOLA),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)).true_t(agentViolatesObligation,
- WOMAN,
- 'KeepAreolaCoveredInPublic') :-
- w_infer_by(tell50:20),
- poss(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')),
- subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'),
- locationState(WOMAN, 'InPublic'),
- poss(wearsClothing(WOMAN, CLOTH)),
- isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- skolem(CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)),
- not('covers-Generic'(CLOTH, AREOLA)).
- %
- tell50:20 true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic):-possible_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic),true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),possible_t(wearsClothing,WOMAN,CLOTH),isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola)),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)),not_true_t(covers-Generic,CLOTH,AREOLA).true_t('covers-Generic',
- CLOTH,
- AREOLA) :-
- w_infer_by(tell50:21),
- poss('covers-Generic'(CLOTH, AREOLA)),
- poss(wearsClothing(WOMAN, CLOTH)),
- isa(AREOLA, 'BodyPartCollectionFn'(WOMAN, 'Areola')),
- subjectToCOC(WOMAN, 'KeepAreolaCoveredInPublic'),
- locationState(WOMAN, 'InPublic'),
- skolem(CLOTH,
- skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA, WOMAN)),
- not(agentViolatesObligation(WOMAN, 'KeepAreolaCoveredInPublic')).
- %
- tell50:21 true_t(covers-Generic,CLOTH,AREOLA):-possible_t(covers-Generic,CLOTH,AREOLA),possible_t(wearsClothing,WOMAN,CLOTH),isa(AREOLA,BodyPartCollectionFn(WOMAN,Areola)),true_t(subjectToCOC,WOMAN,KeepAreolaCoveredInPublic),true_t(locationState,WOMAN,InPublic),call_builtin(skolem,CLOTH,skArg1ofCoversgenericUnkArg2ofWearsclothingFn(AREOLA,WOMAN)),not_true_t(agentViolatesObligation,WOMAN,KeepAreolaCoveredInPublic).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ '\n(implies \n (and \n (isa ?AREOLA \n (BodyPartCollectionFn ?WOMAN Areola)) \n (subjectToCOC ?WOMAN KeepAreolaCoveredInPublic) \n (locationState ?WOMAN InPublic)) \n (thereExists ?CLOTH \n (and \n (or \n (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic) \n (covers-Generic ?CLOTH ?AREOLA)) \n (or \n (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic) \n (wearsClothing ?WOMAN ?CLOTH)))))'
- ].
- pkif :-
- [ '\n(implies \n (and \n (isa ?AREOLA \n (BodyPartCollectionFn ?WOMAN Areola)) \n (subjectToCOC ?WOMAN KeepAreolaCoveredInPublic) \n (locationState ?WOMAN InPublic)) \n (thereExists ?CLOTH \n (and \n (or \n (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic) \n (covers-Generic ?CLOTH ?AREOLA)) \n (or \n (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic) \n (wearsClothing ?WOMAN ?CLOTH)))))'
- ].
- cnf :-
- '\n(implies \n (and \n (isa ?AREOLA \n (BodyPartCollectionFn ?WOMAN Areola)) \n (subjectToCOC ?WOMAN KeepAreolaCoveredInPublic) \n (locationState ?WOMAN InPublic)) \n (thereExists ?CLOTH \n (and \n (or \n (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic) \n (covers-Generic ?CLOTH ?AREOLA)) \n (or \n (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic) \n (wearsClothing ?WOMAN ?CLOTH)))))'.
- %
- tell51:0
- (implies
- (and
- (isa ?AREOLA
- (BodyPartCollectionFn ?WOMAN Areola))
- (subjectToCOC ?WOMAN KeepAreolaCoveredInPublic)
- (locationState ?WOMAN InPublic))
- (thereExists ?CLOTH
- (and
- (or
- (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic)
- (covers-Generic ?CLOTH ?AREOLA))
- (or
- (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic)
- (wearsClothing ?WOMAN ?CLOTH))))).
- tell51:0
- (implies
- (and
- (isa ?AREOLA
- (BodyPartCollectionFn ?WOMAN Areola))
- (subjectToCOC ?WOMAN KeepAreolaCoveredInPublic)
- (locationState ?WOMAN InPublic))
- (thereExists ?CLOTH
- (and
- (or
- (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic)
- (covers-Generic ?CLOTH ?AREOLA))
- (or
- (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic)
- (wearsClothing ?WOMAN ?CLOTH))))).pttp :-
- [ ('\n(implies \n (and \n (isa ?AREOLA \n (BodyPartCollectionFn ?WOMAN Areola)) \n (subjectToCOC ?WOMAN KeepAreolaCoveredInPublic) \n (locationState ?WOMAN InPublic)) \n (thereExists ?CLOTH \n (and \n (or \n (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic) \n (covers-Generic ?CLOTH ?AREOLA)) \n (or \n (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic) \n (wearsClothing ?WOMAN ?CLOTH)))))':-true)
- ].
- %
- '\n(implies \n (and \n (isa ?AREOLA \n (BodyPartCollectionFn ?WOMAN Areola)) \n (subjectToCOC ?WOMAN KeepAreolaCoveredInPublic) \n (locationState ?WOMAN InPublic)) \n (thereExists ?CLOTH \n (and \n (or \n (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic) \n (covers-Generic ?CLOTH ?AREOLA)) \n (or \n (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic) \n (wearsClothing ?WOMAN ?CLOTH)))))' :-
- w_infer_by(tell51:0),
- [].
- %
- tell51:0
- (implies
- (and
- (isa ?AREOLA
- (BodyPartCollectionFn ?WOMAN Areola))
- (subjectToCOC ?WOMAN KeepAreolaCoveredInPublic)
- (locationState ?WOMAN InPublic))
- (thereExists ?CLOTH
- (and
- (or
- (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic)
- (covers-Generic ?CLOTH ?AREOLA))
- (or
- (agentViolatesObligation ?WOMAN KeepAreolaCoveredInPublic)
- (wearsClothing ?WOMAN ?CLOTH))))):-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ all[THEMAN],
- [ all[CRIME],
- [ all[WOMAN],
- [ all[RESPONSE],
- [ all[RETALIATION],
- [ implies,
- [ different(THEMAN, WOMAN),
- intendedMaleficiary(CRIME, THEMAN),
- deliberateActors(CRIME, WOMAN),
- behaviorCapable(THEMAN,
- 'CollectionSubsetFn'('Punishing',
- 'TheSetOf'(RESPONSE,
- maleficiary(RESPONSE,
- WOMAN))),
- deliberateActors)
- ],
- (=>),
- [ 'optionAvailableToAgent-SitType'(THEMAN,
- 'CollectionSubsetFn'('AttemptingFn'('Punishing'),
- 'TheSetOf'(RETALIATION,
- [ intendedMaleficiary(RETALIATION,
- WOMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- [ not,
- [ ex[ANOTRACT],
- [ isa(ANOTRACT,
- 'PurposefulAction'),
- startsAfterEndingOf(ANOTRACT,
- CRIME),
- maleficiary(ANOTRACT,
- THEMAN),
- deliberateActors(ANOTRACT,
- WOMAN)
- ]
- ]
- ])
- ])),
- deliberateActors)
- ]
- ]
- ]
- ]
- ]
- ]
- ].
- pkif :-
- [ implies,
- [ poss(KB,
- 'optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors))
- ],
- (=>),
- [ implies,
- [poss(KB, behaviorCapable(THEMAN, RESPONSE, deliberateActors))],
- (=>),
- [ implies,
- [poss(KB, deliberateActors(CRIME, WOMAN))],
- (=>),
- [ implies,
- [poss(KB, intendedMaleficiary(CRIME, THEMAN))],
- (=>),
- [ implies,
- [different(THEMAN, WOMAN)],
- (=>),
- [ implies,
- [ poss(KB,
- purposeInEvent(THEMAN,
- RETALIATION,
- [ not,
- [ ex[ANOTRACT],
- [ isa(ANOTRACT, 'PurposefulAction'),
- startsAfterEndingOf(ANOTRACT,
- CRIME),
- maleficiary(ANOTRACT, THEMAN),
- deliberateActors(ANOTRACT,
- WOMAN)
- ]
- ]
- ]))
- ],
- (=>),
- [ implies,
- [poss(KB, intendedMaleficiary(RETALIATION, WOMAN))],
- (=>),
- [ implies,
- [poss(KB, maleficiary(RESPONSE, WOMAN))],
- (=>),
- [ implies,
- [ isa(RESPONSE, 'Punishing'),
- maleficiary(RESPONSE, WOMAN)
- ],
- (=>),
- [ implies,
- [ isa(RETALIATION, 'AttemptingFn'('Punishing')),
- intendedMaleficiary(RETALIATION, WOMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- [ not,
- [ ex[ANOTRACT],
- [ isa(ANOTRACT,
- 'PurposefulAction'),
- startsAfterEndingOf(ANOTRACT,
- CRIME),
- maleficiary(ANOTRACT,
- THEMAN),
- deliberateActors(ANOTRACT,
- WOMAN)
- ]
- ]
- ])
- ],
- (=>),
- [ all[THEMAN],
- [ all[CRIME],
- [ all[WOMAN],
- [ all[RESPONSE],
- [ all[RETALIATION],
- [ implies,
- [ different(THEMAN, WOMAN),
- intendedMaleficiary(CRIME, THEMAN),
- deliberateActors(CRIME, WOMAN),
- behaviorCapable(THEMAN,
- RESPONSE,
- deliberateActors)
- ],
- (=>),
- [ 'optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ]
- ].
- cnf :-
- ( not(possible_t('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)))
- ; not(possible_t(behaviorCapable(THEMAN, RESPONSE, deliberateActors)))
- ; not(possible_t(deliberateActors(CRIME, WOMAN)))
- ; not(possible_t(intendedMaleficiary(CRIME, THEMAN)))
- ; not(different(THEMAN, WOMAN))
- ; not(purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))))
- ; not(possible_t(intendedMaleficiary(RETALIATION, WOMAN)))
- ; not(possible_t(maleficiary(RESPONSE, WOMAN)))
- ; not(isa(RESPONSE, 'Punishing'))
- ; not(maleficiary(RESPONSE, WOMAN))
- ; 'optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)
- ; not(intendedMaleficiary(CRIME, THEMAN))
- ; not(deliberateActors(CRIME, WOMAN))
- ; not(behaviorCapable(THEMAN, RESPONSE, deliberateActors))
- ; not(isa(RETALIATION, 'AttemptingFn'('Punishing')))
- ; not(intendedMaleficiary(RETALIATION, WOMAN))
- ).
- %
- tell26:0 not_possible_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors);not_possible_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors);not_possible_t(deliberateActors,CRIME,WOMAN);not_possible_t(intendedMaleficiary,CRIME,THEMAN);not_call_builtin(different,THEMAN,WOMAN);not_true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN)));not_possible_t(intendedMaleficiary,RETALIATION,WOMAN);not_possible_t(maleficiary,RESPONSE,WOMAN);not_isa(RESPONSE,Punishing);not_true_t(maleficiary,RESPONSE,WOMAN);true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors);not_true_t(intendedMaleficiary,CRIME,THEMAN);not_true_t(deliberateActors,CRIME,WOMAN);not_true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors);not_isa(RETALIATION,AttemptingFn(Punishing));not_true_t(intendedMaleficiary,RETALIATION,WOMAN).pttp :-
- [ (not_isa(RESPONSE, 'Punishing'):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_isa(RETALIATION, 'AttemptingFn'('Punishing')):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_call_builtin(different, THEMAN, WOMAN):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_possible_t(deliberateActors, CRIME, WOMAN):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_possible_t(intendedMaleficiary, CRIME, THEMAN):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_possible_t(intendedMaleficiary, RETALIATION, WOMAN):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_possible_t(maleficiary, RESPONSE, WOMAN):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_true_t(deliberateActors, CRIME, WOMAN):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_true_t(intendedMaleficiary, CRIME, THEMAN):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_true_t(intendedMaleficiary, RETALIATION, WOMAN):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing'))),
- (not_true_t(maleficiary, RESPONSE, WOMAN):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors):-possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (not_true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), not_true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN)),
- (true_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors):-possible_t('optionAvailableToAgent-SitType', THEMAN, RETALIATION, deliberateActors), possible_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), possible_t(deliberateActors, CRIME, WOMAN), possible_t(intendedMaleficiary, CRIME, THEMAN), call_builtin(different, THEMAN, WOMAN), true_t(purposeInEvent, THEMAN, RETALIATION, (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))), possible_t(intendedMaleficiary, RETALIATION, WOMAN), possible_t(maleficiary, RESPONSE, WOMAN), isa(RESPONSE, 'Punishing'), true_t(maleficiary, RESPONSE, WOMAN), true_t(intendedMaleficiary, CRIME, THEMAN), true_t(deliberateActors, CRIME, WOMAN), true_t(behaviorCapable, THEMAN, RESPONSE, deliberateActors), isa(RETALIATION, 'AttemptingFn'('Punishing')), true_t(intendedMaleficiary, RETALIATION, WOMAN))
- ].
- %
- ;not_isa(RESPONSE, 'Punishing') :-
- w_infer_by(tell26:0),
- maleficiary(RESPONSE, WOMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- different(THEMAN, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- intendedMaleficiary(CRIME, THEMAN),
- deliberateActors(CRIME, WOMAN),
- intendedMaleficiary(RETALIATION, WOMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:0 not_isa(RESPONSE,Punishing):-true_t(maleficiary,RESPONSE,WOMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),isa(RETALIATION,AttemptingFn(Punishing)),call_builtin(different,THEMAN,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(deliberateActors,CRIME,WOMAN),true_t(intendedMaleficiary,RETALIATION,WOMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not(isa(RETALIATION, ATTEMPTINGFNPUNISHING2)):not(mudEquals(ATTEMPTINGFNPUNISHING2, 'AttemptingFn'('Punishing')), (different(THEMAN, WOMAN), purposeInEvent(THEMAN, RETALIATION, (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))), isa(RESPONSE, 'Punishing'), maleficiary(RESPONSE, WOMAN), not('optionAvailableToAgent-SitType'(THEMAN, RETALIATION, deliberateActors)), intendedMaleficiary(CRIME, THEMAN), deliberateActors(CRIME, WOMAN), behaviorCapable(THEMAN, RESPONSE, deliberateActors), intendedMaleficiary(RETALIATION, WOMAN))) :-
- w_infer_by(tell26:1).
- %
- tell26:1 true_t(:,not_isa(RETALIATION,ATTEMPTINGFNPUNISHING2),mudEquals(ATTEMPTINGFNPUNISHING2,AttemptingFn(Punishing))- (call_builtin(different,THEMAN,WOMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))),isa(RESPONSE,Punishing),true_t(maleficiary,RESPONSE,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(deliberateActors,CRIME,WOMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),true_t(intendedMaleficiary,RETALIATION,WOMAN))).
- tell26:1 true_t(:,not_isa(RETALIATION,ATTEMPTINGFNPUNISHING2),mudEquals(ATTEMPTINGFNPUNISHING2,AttemptingFn(Punishing))- (call_builtin(different,THEMAN,WOMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))),isa(RESPONSE,Punishing),true_t(maleficiary,RESPONSE,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(deliberateActors,CRIME,WOMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),true_t(intendedMaleficiary,RETALIATION,WOMAN))).not_call_builtin(different,
- THEMAN,
- WOMAN) :-
- w_infer_by(tell26:2),
- isa(RESPONSE, 'Punishing'),
- maleficiary(RESPONSE, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- intendedMaleficiary(CRIME, THEMAN),
- deliberateActors(CRIME, WOMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- intendedMaleficiary(RETALIATION, WOMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:2 not_call_builtin(different,THEMAN,WOMAN):-isa(RESPONSE,Punishing),true_t(maleficiary,RESPONSE,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(deliberateActors,CRIME,WOMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),isa(RETALIATION,AttemptingFn(Punishing)),true_t(intendedMaleficiary,RETALIATION,WOMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_possible_t(deliberateActors,
- CRIME,
- WOMAN) :-
- w_infer_by(tell26:3),
- deliberateActors(CRIME, WOMAN),
- different(THEMAN, WOMAN),
- isa(RESPONSE, 'Punishing'),
- maleficiary(RESPONSE, WOMAN),
- intendedMaleficiary(CRIME, THEMAN),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- intendedMaleficiary(RETALIATION, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:3 not_possible_t(deliberateActors,CRIME,WOMAN):-true_t(deliberateActors,CRIME,WOMAN),call_builtin(different,THEMAN,WOMAN),isa(RESPONSE,Punishing),true_t(maleficiary,RESPONSE,WOMAN),true_t(intendedMaleficiary,CRIME,THEMAN),isa(RETALIATION,AttemptingFn(Punishing)),true_t(intendedMaleficiary,RETALIATION,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_possible_t(intendedMaleficiary,
- CRIME,
- THEMAN) :-
- w_infer_by(tell26:4),
- intendedMaleficiary(CRIME, THEMAN),
- different(THEMAN, WOMAN),
- isa(RESPONSE, 'Punishing'),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- deliberateActors(CRIME, WOMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- maleficiary(RESPONSE, WOMAN),
- intendedMaleficiary(RETALIATION, WOMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:4 not_possible_t(intendedMaleficiary,CRIME,THEMAN):-true_t(intendedMaleficiary,CRIME,THEMAN),call_builtin(different,THEMAN,WOMAN),isa(RESPONSE,Punishing),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(deliberateActors,CRIME,WOMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),isa(RETALIATION,AttemptingFn(Punishing)),true_t(maleficiary,RESPONSE,WOMAN),true_t(intendedMaleficiary,RETALIATION,WOMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_possible_t(intendedMaleficiary,
- RETALIATION,
- WOMAN) :-
- w_infer_by(tell26:5),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- intendedMaleficiary(RETALIATION, WOMAN),
- different(THEMAN, WOMAN),
- isa(RESPONSE, 'Punishing'),
- maleficiary(RESPONSE, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- deliberateActors(CRIME, WOMAN),
- intendedMaleficiary(CRIME, THEMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:5 not_possible_t(intendedMaleficiary,RETALIATION,WOMAN):-isa(RETALIATION,AttemptingFn(Punishing)),true_t(intendedMaleficiary,RETALIATION,WOMAN),call_builtin(different,THEMAN,WOMAN),isa(RESPONSE,Punishing),true_t(maleficiary,RESPONSE,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(deliberateActors,CRIME,WOMAN),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_possible_t(maleficiary,
- RESPONSE,
- WOMAN) :-
- w_infer_by(tell26:6),
- isa(RESPONSE, 'Punishing'),
- maleficiary(RESPONSE, WOMAN),
- different(THEMAN, WOMAN),
- deliberateActors(CRIME, WOMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- intendedMaleficiary(RETALIATION, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- intendedMaleficiary(CRIME, THEMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:6 not_possible_t(maleficiary,RESPONSE,WOMAN):-isa(RESPONSE,Punishing),true_t(maleficiary,RESPONSE,WOMAN),call_builtin(different,THEMAN,WOMAN),true_t(deliberateActors,CRIME,WOMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),isa(RETALIATION,AttemptingFn(Punishing)),true_t(intendedMaleficiary,RETALIATION,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_true_t(deliberateActors,
- CRIME,
- WOMAN) :-
- w_infer_by(tell26:7),
- poss(deliberateActors(CRIME, WOMAN)),
- different(THEMAN, WOMAN),
- isa(RESPONSE, 'Punishing'),
- maleficiary(RESPONSE, WOMAN),
- intendedMaleficiary(CRIME, THEMAN),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- intendedMaleficiary(RETALIATION, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:7 not_true_t(deliberateActors,CRIME,WOMAN):-possible_t(deliberateActors,CRIME,WOMAN),call_builtin(different,THEMAN,WOMAN),isa(RESPONSE,Punishing),true_t(maleficiary,RESPONSE,WOMAN),true_t(intendedMaleficiary,CRIME,THEMAN),isa(RETALIATION,AttemptingFn(Punishing)),true_t(intendedMaleficiary,RETALIATION,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_true_t(intendedMaleficiary,
- CRIME,
- THEMAN) :-
- w_infer_by(tell26:8),
- poss(intendedMaleficiary(CRIME, THEMAN)),
- different(THEMAN, WOMAN),
- isa(RESPONSE, 'Punishing'),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- deliberateActors(CRIME, WOMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- maleficiary(RESPONSE, WOMAN),
- intendedMaleficiary(RETALIATION, WOMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:8 not_true_t(intendedMaleficiary,CRIME,THEMAN):-possible_t(intendedMaleficiary,CRIME,THEMAN),call_builtin(different,THEMAN,WOMAN),isa(RESPONSE,Punishing),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(deliberateActors,CRIME,WOMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),isa(RETALIATION,AttemptingFn(Punishing)),true_t(maleficiary,RESPONSE,WOMAN),true_t(intendedMaleficiary,RETALIATION,WOMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_true_t(intendedMaleficiary,
- RETALIATION,
- WOMAN) :-
- w_infer_by(tell26:9),
- poss(intendedMaleficiary(RETALIATION, WOMAN)),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- different(THEMAN, WOMAN),
- isa(RESPONSE, 'Punishing'),
- maleficiary(RESPONSE, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- deliberateActors(CRIME, WOMAN),
- intendedMaleficiary(CRIME, THEMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:9 not_true_t(intendedMaleficiary,RETALIATION,WOMAN):-possible_t(intendedMaleficiary,RETALIATION,WOMAN),isa(RETALIATION,AttemptingFn(Punishing)),call_builtin(different,THEMAN,WOMAN),isa(RESPONSE,Punishing),true_t(maleficiary,RESPONSE,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(deliberateActors,CRIME,WOMAN),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_true_t(maleficiary,
- RESPONSE,
- WOMAN) :-
- w_infer_by(tell26:10),
- poss(maleficiary(RESPONSE, WOMAN)),
- isa(RESPONSE, 'Punishing'),
- different(THEMAN, WOMAN),
- deliberateActors(CRIME, WOMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- intendedMaleficiary(RETALIATION, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- intendedMaleficiary(CRIME, THEMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:10 not_true_t(maleficiary,RESPONSE,WOMAN):-possible_t(maleficiary,RESPONSE,WOMAN),isa(RESPONSE,Punishing),call_builtin(different,THEMAN,WOMAN),true_t(deliberateActors,CRIME,WOMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),isa(RETALIATION,AttemptingFn(Punishing)),true_t(intendedMaleficiary,RETALIATION,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_possible_t(behaviorCapable,
- THEMAN,
- RESPONSE,
- deliberateActors) :-
- w_infer_by(tell26:11),
- isa(RESPONSE, 'Punishing'),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- different(THEMAN, WOMAN),
- maleficiary(RESPONSE, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- intendedMaleficiary(CRIME, THEMAN),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- deliberateActors(CRIME, WOMAN),
- intendedMaleficiary(RETALIATION, WOMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:11 not_possible_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors):-isa(RESPONSE,Punishing),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),call_builtin(different,THEMAN,WOMAN),true_t(maleficiary,RESPONSE,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(intendedMaleficiary,CRIME,THEMAN),isa(RETALIATION,AttemptingFn(Punishing)),true_t(deliberateActors,CRIME,WOMAN),true_t(intendedMaleficiary,RETALIATION,WOMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_possible_t('optionAvailableToAgent-SitType',
- THEMAN,
- RETALIATION,
- deliberateActors) :-
- w_infer_by(tell26:12),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- different(THEMAN, WOMAN),
- isa(RESPONSE, 'Punishing'),
- intendedMaleficiary(CRIME, THEMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- intendedMaleficiary(RETALIATION, WOMAN),
- maleficiary(RESPONSE, WOMAN),
- deliberateActors(CRIME, WOMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:12 not_possible_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors):-not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),isa(RETALIATION,AttemptingFn(Punishing)),call_builtin(different,THEMAN,WOMAN),isa(RESPONSE,Punishing),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),true_t(intendedMaleficiary,RETALIATION,WOMAN),true_t(maleficiary,RESPONSE,WOMAN),true_t(deliberateActors,CRIME,WOMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_true_t(behaviorCapable,
- THEMAN,
- RESPONSE,
- deliberateActors) :-
- w_infer_by(tell26:13),
- poss(behaviorCapable(THEMAN, RESPONSE, deliberateActors)),
- isa(RESPONSE, 'Punishing'),
- different(THEMAN, WOMAN),
- maleficiary(RESPONSE, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- intendedMaleficiary(CRIME, THEMAN),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- deliberateActors(CRIME, WOMAN),
- intendedMaleficiary(RETALIATION, WOMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:13 not_true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors):-possible_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),isa(RESPONSE,Punishing),call_builtin(different,THEMAN,WOMAN),true_t(maleficiary,RESPONSE,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(intendedMaleficiary,CRIME,THEMAN),isa(RETALIATION,AttemptingFn(Punishing)),true_t(deliberateActors,CRIME,WOMAN),true_t(intendedMaleficiary,RETALIATION,WOMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).not_true_t(purposeInEvent,
- THEMAN,
- RETALIATION,
- (not_isa(ANOTRACT, 'PurposefulAction');not_true_t(startsAfterEndingOf, ANOTRACT, CRIME);not_true_t(maleficiary, ANOTRACT, THEMAN);not_true_t(deliberateActors, ANOTRACT, WOMAN))) :-
- w_infer_by(tell26:14),
- different(THEMAN, WOMAN),
- not('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- intendedMaleficiary(CRIME, THEMAN),
- deliberateActors(CRIME, WOMAN),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- intendedMaleficiary(RETALIATION, WOMAN),
- isa(RESPONSE, 'Punishing'),
- maleficiary(RESPONSE, WOMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors).
- %
- tell26:14 not_true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))):-call_builtin(different,THEMAN,WOMAN),not_true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(deliberateActors,CRIME,WOMAN),isa(RETALIATION,AttemptingFn(Punishing)),true_t(intendedMaleficiary,RETALIATION,WOMAN),isa(RESPONSE,Punishing),true_t(maleficiary,RESPONSE,WOMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors).true_t('optionAvailableToAgent-SitType',
- THEMAN,
- RETALIATION,
- deliberateActors) :-
- w_infer_by(tell26:15),
- poss('optionAvailableToAgent-SitType'(THEMAN,
- RETALIATION,
- deliberateActors)),
- isa(RETALIATION, 'AttemptingFn'('Punishing')),
- different(THEMAN, WOMAN),
- isa(RESPONSE, 'Punishing'),
- intendedMaleficiary(CRIME, THEMAN),
- behaviorCapable(THEMAN, RESPONSE, deliberateActors),
- intendedMaleficiary(RETALIATION, WOMAN),
- maleficiary(RESPONSE, WOMAN),
- deliberateActors(CRIME, WOMAN),
- purposeInEvent(THEMAN,
- RETALIATION,
- (not(isa(ANOTRACT, 'PurposefulAction'));not(startsAfterEndingOf(ANOTRACT, CRIME));not(maleficiary(ANOTRACT, THEMAN));not(deliberateActors(ANOTRACT, WOMAN)))).
- %
- tell26:15 true_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors):-possible_t(optionAvailableToAgent-SitType,THEMAN,RETALIATION,deliberateActors),isa(RETALIATION,AttemptingFn(Punishing)),call_builtin(different,THEMAN,WOMAN),isa(RESPONSE,Punishing),true_t(intendedMaleficiary,CRIME,THEMAN),true_t(behaviorCapable,THEMAN,RESPONSE,deliberateActors),true_t(intendedMaleficiary,RETALIATION,WOMAN),true_t(maleficiary,RESPONSE,WOMAN),true_t(deliberateActors,CRIME,WOMAN),true_t(purposeInEvent,THEMAN,RETALIATION, (not_isa(ANOTRACT,PurposefulAction);not_true_t(startsAfterEndingOf,ANOTRACT,CRIME);not_true_t(maleficiary,ANOTRACT,THEMAN);not_true_t(deliberateActors,ANOTRACT,WOMAN))).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ '\n(implies \n (and \n (different ?THEMAN ?WOMAN) \n (intendedMaleficiary ?CRIME ?THEMAN) \n (deliberateActors ?CRIME ?WOMAN) \n (behaviorCapable ?THEMAN \n (CollectionSubsetFn Punishing \n (TheSetOf ?RESPONSE \n (maleficiary ?RESPONSE ?WOMAN))) deliberateActors)) \n\n (optionAvailableToAgent-SitType ?THEMAN \n (CollectionSubsetFn \n (AttemptingFn Punishing) \n (TheSetOf ?RETALIATION \n (and \n (intendedMaleficiary ?RETALIATION ?WOMAN) \n (purposeInEvent ?THEMAN ?RETALIATION \n (not \n (thereExists ?ANOTRACT \n (and \n (isa ?ANOTRACT PurposefulAction) \n (startsAfterEndingOf ?ANOTRACT ?CRIME) \n (maleficiary ?ANOTRACT ?THEMAN) \n (deliberateActors ?ANOTRACT ?WOMAN)))))))) deliberateActors))'
- ].
- pkif :-
- [ '\n(implies \n (and \n (different ?THEMAN ?WOMAN) \n (intendedMaleficiary ?CRIME ?THEMAN) \n (deliberateActors ?CRIME ?WOMAN) \n (behaviorCapable ?THEMAN \n (CollectionSubsetFn Punishing \n (TheSetOf ?RESPONSE \n (maleficiary ?RESPONSE ?WOMAN))) deliberateActors)) \n\n (optionAvailableToAgent-SitType ?THEMAN \n (CollectionSubsetFn \n (AttemptingFn Punishing) \n (TheSetOf ?RETALIATION \n (and \n (intendedMaleficiary ?RETALIATION ?WOMAN) \n (purposeInEvent ?THEMAN ?RETALIATION \n (not \n (thereExists ?ANOTRACT \n (and \n (isa ?ANOTRACT PurposefulAction) \n (startsAfterEndingOf ?ANOTRACT ?CRIME) \n (maleficiary ?ANOTRACT ?THEMAN) \n (deliberateActors ?ANOTRACT ?WOMAN)))))))) deliberateActors))'
- ].
- cnf :-
- '\n(implies \n (and \n (different ?THEMAN ?WOMAN) \n (intendedMaleficiary ?CRIME ?THEMAN) \n (deliberateActors ?CRIME ?WOMAN) \n (behaviorCapable ?THEMAN \n (CollectionSubsetFn Punishing \n (TheSetOf ?RESPONSE \n (maleficiary ?RESPONSE ?WOMAN))) deliberateActors)) \n\n (optionAvailableToAgent-SitType ?THEMAN \n (CollectionSubsetFn \n (AttemptingFn Punishing) \n (TheSetOf ?RETALIATION \n (and \n (intendedMaleficiary ?RETALIATION ?WOMAN) \n (purposeInEvent ?THEMAN ?RETALIATION \n (not \n (thereExists ?ANOTRACT \n (and \n (isa ?ANOTRACT PurposefulAction) \n (startsAfterEndingOf ?ANOTRACT ?CRIME) \n (maleficiary ?ANOTRACT ?THEMAN) \n (deliberateActors ?ANOTRACT ?WOMAN)))))))) deliberateActors))'.
- %
- tell27:0
- (implies
- (and
- (different ?THEMAN ?WOMAN)
- (intendedMaleficiary ?CRIME ?THEMAN)
- (deliberateActors ?CRIME ?WOMAN)
- (behaviorCapable ?THEMAN
- (CollectionSubsetFn Punishing
- (TheSetOf ?RESPONSE
- (maleficiary ?RESPONSE ?WOMAN))) deliberateActors))
- (optionAvailableToAgent-SitType ?THEMAN
- (CollectionSubsetFn
- (AttemptingFn Punishing)
- (TheSetOf ?RETALIATION
- (and
- (intendedMaleficiary ?RETALIATION ?WOMAN)
- (purposeInEvent ?THEMAN ?RETALIATION
- (not
- (thereExists ?ANOTRACT
- (and
- (isa ?ANOTRACT PurposefulAction)
- (startsAfterEndingOf ?ANOTRACT ?CRIME)
- (maleficiary ?ANOTRACT ?THEMAN)
- (deliberateActors ?ANOTRACT ?WOMAN)))))))) deliberateActors)).
- tell27:0
- (implies
- (and
- (different ?THEMAN ?WOMAN)
- (intendedMaleficiary ?CRIME ?THEMAN)
- (deliberateActors ?CRIME ?WOMAN)
- (behaviorCapable ?THEMAN
- (CollectionSubsetFn Punishing
- (TheSetOf ?RESPONSE
- (maleficiary ?RESPONSE ?WOMAN))) deliberateActors))
- (optionAvailableToAgent-SitType ?THEMAN
- (CollectionSubsetFn
- (AttemptingFn Punishing)
- (TheSetOf ?RETALIATION
- (and
- (intendedMaleficiary ?RETALIATION ?WOMAN)
- (purposeInEvent ?THEMAN ?RETALIATION
- (not
- (thereExists ?ANOTRACT
- (and
- (isa ?ANOTRACT PurposefulAction)
- (startsAfterEndingOf ?ANOTRACT ?CRIME)
- (maleficiary ?ANOTRACT ?THEMAN)
- (deliberateActors ?ANOTRACT ?WOMAN)))))))) deliberateActors)).pttp :-
- [ ('\n(implies \n (and \n (different ?THEMAN ?WOMAN) \n (intendedMaleficiary ?CRIME ?THEMAN) \n (deliberateActors ?CRIME ?WOMAN) \n (behaviorCapable ?THEMAN \n (CollectionSubsetFn Punishing \n (TheSetOf ?RESPONSE \n (maleficiary ?RESPONSE ?WOMAN))) deliberateActors)) \n\n (optionAvailableToAgent-SitType ?THEMAN \n (CollectionSubsetFn \n (AttemptingFn Punishing) \n (TheSetOf ?RETALIATION \n (and \n (intendedMaleficiary ?RETALIATION ?WOMAN) \n (purposeInEvent ?THEMAN ?RETALIATION \n (not \n (thereExists ?ANOTRACT \n (and \n (isa ?ANOTRACT PurposefulAction) \n (startsAfterEndingOf ?ANOTRACT ?CRIME) \n (maleficiary ?ANOTRACT ?THEMAN) \n (deliberateActors ?ANOTRACT ?WOMAN)))))))) deliberateActors))':-true)
- ].
- %
- '\n(implies \n (and \n (different ?THEMAN ?WOMAN) \n (intendedMaleficiary ?CRIME ?THEMAN) \n (deliberateActors ?CRIME ?WOMAN) \n (behaviorCapable ?THEMAN \n (CollectionSubsetFn Punishing \n (TheSetOf ?RESPONSE \n (maleficiary ?RESPONSE ?WOMAN))) deliberateActors)) \n\n (optionAvailableToAgent-SitType ?THEMAN \n (CollectionSubsetFn \n (AttemptingFn Punishing) \n (TheSetOf ?RETALIATION \n (and \n (intendedMaleficiary ?RETALIATION ?WOMAN) \n (purposeInEvent ?THEMAN ?RETALIATION \n (not \n (thereExists ?ANOTRACT \n (and \n (isa ?ANOTRACT PurposefulAction) \n (startsAfterEndingOf ?ANOTRACT ?CRIME) \n (maleficiary ?ANOTRACT ?THEMAN) \n (deliberateActors ?ANOTRACT ?WOMAN)))))))) deliberateActors))' :-
- w_infer_by(tell27:0),
- [].
- %
- tell27:0
- (implies
- (and
- (different ?THEMAN ?WOMAN)
- (intendedMaleficiary ?CRIME ?THEMAN)
- (deliberateActors ?CRIME ?WOMAN)
- (behaviorCapable ?THEMAN
- (CollectionSubsetFn Punishing
- (TheSetOf ?RESPONSE
- (maleficiary ?RESPONSE ?WOMAN))) deliberateActors))
- (optionAvailableToAgent-SitType ?THEMAN
- (CollectionSubsetFn
- (AttemptingFn Punishing)
- (TheSetOf ?RETALIATION
- (and
- (intendedMaleficiary ?RETALIATION ?WOMAN)
- (purposeInEvent ?THEMAN ?RETALIATION
- (not
- (thereExists ?ANOTRACT
- (and
- (isa ?ANOTRACT PurposefulAction)
- (startsAfterEndingOf ?ANOTRACT ?CRIME)
- (maleficiary ?ANOTRACT ?THEMAN)
- (deliberateActors ?ANOTRACT ?WOMAN)))))))) deliberateActors)):-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ beliefs('InternationalCommunity'),
- [ex[WEAP], [isa(WEAP, 'ChemicalWeapon'), possesses('Israel', WEAP)]]
- ].
- pkif :-
- [ implies,
- [ poss(KB,
- [beliefs('InternationalCommunity'), [possesses('Israel', WEAP)]])
- ],
- (=>),
- [ implies,
- [ poss(KB,
- [ beliefs('InternationalCommunity'),
- [isa(WEAP, 'ChemicalWeapon')]
- ])
- ],
- (=>),
- [ beliefs('InternationalCommunity'),
- [ex[WEAP], [isa(WEAP, 'ChemicalWeapon'), possesses('Israel', WEAP)]]
- ]
- ]
- ].
- cnf :-
- ( not(beliefs('InternationalCommunity', possesses('Israel', WEAP)))
- ; not(beliefs('InternationalCommunity', isa(WEAP, 'ChemicalWeapon')))
- ; beliefs('InternationalCommunity',
- (not(skolem(WEAP, skIsChemicalweaponInUnkArg2ofPossessesFn));isa(WEAP, 'ChemicalWeapon'), possesses('Israel', WEAP)))
- ).
- %
- tell52:0 not_true_t(beliefs,InternationalCommunity,possesses(Israel,WEAP));not_true_t(beliefs,InternationalCommunity,isa(WEAP,ChemicalWeapon));true_t(beliefs,InternationalCommunity, (not_call_builtin(skolem,WEAP,skIsChemicalweaponInUnkArg2ofPossessesFn);isa(WEAP,ChemicalWeapon),true_t(possesses,Israel,WEAP))).pttp :-
- [ (not_true_t(beliefs, 'InternationalCommunity', isa(WEAP, 'ChemicalWeapon')):-true_t(beliefs, 'InternationalCommunity', possesses('Israel', WEAP)), not_true_t(beliefs, 'InternationalCommunity', (not_call_builtin(skolem, WEAP, skIsChemicalweaponInUnkArg2ofPossessesFn);isa(WEAP, 'ChemicalWeapon'), true_t(possesses, 'Israel', WEAP)))),
- (not_true_t(beliefs, 'InternationalCommunity', possesses('Israel', WEAP)):-true_t(beliefs, 'InternationalCommunity', isa(WEAP, 'ChemicalWeapon')), not_true_t(beliefs, 'InternationalCommunity', (not_call_builtin(skolem, WEAP, skIsChemicalweaponInUnkArg2ofPossessesFn);isa(WEAP, 'ChemicalWeapon'), true_t(possesses, 'Israel', WEAP)))),
- (true_t(beliefs, 'InternationalCommunity', (not_call_builtin(skolem, WEAP, skIsChemicalweaponInUnkArg2ofPossessesFn);isa(WEAP, 'ChemicalWeapon'), true_t(possesses, 'Israel', WEAP))):-true_t(beliefs, 'InternationalCommunity', possesses('Israel', WEAP)), true_t(beliefs, 'InternationalCommunity', isa(WEAP, 'ChemicalWeapon')))
- ].
- %
- not_true_t(beliefs, 'InternationalCommunity', isa(WEAP, 'ChemicalWeapon')) :-
- w_infer_by(tell52:0),
- beliefs('InternationalCommunity', possesses('Israel', WEAP)),
- not(beliefs('InternationalCommunity',
- (not(skolem(WEAP, skIsChemicalweaponInUnkArg2ofPossessesFn));isa(WEAP, 'ChemicalWeapon'), possesses('Israel', WEAP)))).
- %
- tell52:0 not_true_t(beliefs,InternationalCommunity,isa(WEAP,ChemicalWeapon)):-true_t(beliefs,InternationalCommunity,possesses(Israel,WEAP)),not_true_t(beliefs,InternationalCommunity, (not_call_builtin(skolem,WEAP,skIsChemicalweaponInUnkArg2ofPossessesFn);isa(WEAP,ChemicalWeapon),true_t(possesses,Israel,WEAP))).not_true_t(beliefs,
- 'InternationalCommunity',
- possesses('Israel',
- WEAP)) :-
- w_infer_by(tell52:1),
- beliefs('InternationalCommunity', isa(WEAP, 'ChemicalWeapon')),
- not(beliefs('InternationalCommunity',
- (not(skolem(WEAP, skIsChemicalweaponInUnkArg2ofPossessesFn));isa(WEAP, 'ChemicalWeapon'), possesses('Israel', WEAP)))).
- %
- tell52:1 not_true_t(beliefs,InternationalCommunity,possesses(Israel,WEAP)):-true_t(beliefs,InternationalCommunity,isa(WEAP,ChemicalWeapon)),not_true_t(beliefs,InternationalCommunity, (not_call_builtin(skolem,WEAP,skIsChemicalweaponInUnkArg2ofPossessesFn);isa(WEAP,ChemicalWeapon),true_t(possesses,Israel,WEAP))).true_t(beliefs,
- 'InternationalCommunity',
- (not_call_builtin(skolem, WEAP, skIsChemicalweaponInUnkArg2ofPossessesFn);isa(WEAP, 'ChemicalWeapon'), true_t(possesses, 'Israel', WEAP))) :-
- w_infer_by(tell52:2),
- beliefs('InternationalCommunity', possesses('Israel', WEAP)),
- beliefs('InternationalCommunity', isa(WEAP, 'ChemicalWeapon')).
- %
- tell52:2 true_t(beliefs,InternationalCommunity, (not_call_builtin(skolem,WEAP,skIsChemicalweaponInUnkArg2ofPossessesFn);isa(WEAP,ChemicalWeapon),true_t(possesses,Israel,WEAP))):-true_t(beliefs,InternationalCommunity,possesses(Israel,WEAP)),true_t(beliefs,InternationalCommunity,isa(WEAP,ChemicalWeapon)).
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ '\n(beliefs InternationalCommunity \n (thereExists ?WEAP \n (and \n (isa ?WEAP ChemicalWeapon) \n (possesses Israel ?WEAP))))'
- ].
- pkif :-
- [ '\n(beliefs InternationalCommunity \n (thereExists ?WEAP \n (and \n (isa ?WEAP ChemicalWeapon) \n (possesses Israel ?WEAP))))'
- ].
- cnf :-
- '\n(beliefs InternationalCommunity \n (thereExists ?WEAP \n (and \n (isa ?WEAP ChemicalWeapon) \n (possesses Israel ?WEAP))))'.
- %
- tell53:0
- (beliefs InternationalCommunity
- (thereExists ?WEAP
- (and
- (isa ?WEAP ChemicalWeapon)
- (possesses Israel ?WEAP)))).
- tell53:0
- (beliefs InternationalCommunity
- (thereExists ?WEAP
- (and
- (isa ?WEAP ChemicalWeapon)
- (possesses Israel ?WEAP)))).pttp :-
- [ ('\n(beliefs InternationalCommunity \n (thereExists ?WEAP \n (and \n (isa ?WEAP ChemicalWeapon) \n (possesses Israel ?WEAP))))':-true)
- ].
- %
- '\n(beliefs InternationalCommunity \n (thereExists ?WEAP \n (and \n (isa ?WEAP ChemicalWeapon) \n (possesses Israel ?WEAP))))' :-
- w_infer_by(tell53:0),
- [].
- %
- tell53:0
- (beliefs InternationalCommunity
- (thereExists ?WEAP
- (and
- (isa ?WEAP ChemicalWeapon)
- (possesses Israel ?WEAP)))):-[].
- true ;
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- kif :-
- [ all[N3],
- [ implies,
- [isa(N3, tAgent)],
- (=>),
- [ex[O3], [isa(O3, tNose), mudContains(N3, O3)]]
- ]
- ].
- pkif :-
- [ implies,
- [poss(KB, mudContains(N3, O3))],
- (=>),
- [ all[N3],
- [ implies,
- [isa(N3, tAgent)],
- (=>),
- [ex[O3], [isa(O3, tNose), mudContains(N3, O3)]]
- ]
- ]
- ].
- cnf :-
- ( not(possible_t(mudContains(N3, O3)))
- ; not(isa(N3, tAgent))
- ; not(skolem(O3, skIsNoseInUnkArg2ofContainsFn(N3)))
- ; isa(O3, tNose)
- ),
- ( not(possible_t(mudContains(N3, O3)))
- ; not(isa(N3, tAgent))
- ; not(skolem(O3, skIsNoseInUnkArg2ofContainsFn(N3)))
- ; mudContains(N3, O3)
- ).
- %
- tell54:0 not_possible_t(mudContains,N3,O3);not_isa(N3,tAgent);not_call_builtin(skolem,O3,skIsNoseInUnkArg2ofContainsFn(N3));isa(O3,tNose).
- % todo(warn(builtin_why(mudContains, 2, number_of_rules(1)))).
- %
- % todo(warn(pttp_builtin(mudContains, 2))).
- %
- tell54:1 not_possible_t(mudContains,N3,O3);not_isa(N3,tAgent);not_call_builtin(skolem,O3,skIsNoseInUnkArg2ofContainsFn(N3));call_builtin(mudContains,N3,O3).pttp :-
- [ (isa(O3, tNose):-possible_t(mudContains, N3, O3), isa(N3, tAgent), call_builtin(skolem, O3, skIsNoseInUnkArg2ofContainsFn(N3))),
- (not_isa(N3, tAgent):-possible_t(mudContains, N3, O3), call_builtin(skolem, O3, skIsNoseInUnkArg2ofContainsFn(N3)), not_isa(O3, tNose)),
- (not_isa(N3, tAgent):-possible_t(mudContains, N3, O3), call_builtin(skolem, O3, skIsNoseInUnkArg2ofContainsFn(N3)), not_call_builtin(mudContains, N3, O3)),
- (call_builtin(mudContains, N3, O3):-possible_t(mudContains, N3, O3), isa(N3, tAgent), call_builtin(skolem, O3, skIsNoseInUnkArg2ofContainsFn(N3))),
- (not_call_builtin(skolem, O3, skIsNoseInUnkArg2ofContainsFn(N3)):-possible_t(mudContains, N3, O3), isa(N3, tAgent), not_isa(O3, tNose)),
- (not_call_builtin(skolem, O3, skIsNoseInUnkArg2ofContainsFn(N3)):-possible_t(mudContains, N3, O3), isa(N3, tAgent), not_call_builtin(mudContains, N3, O3)),
- (not_possible_t(mudContains, N3, O3):-isa(N3, tAgent), call_builtin(skolem, O3, skIsNoseInUnkArg2ofContainsFn(N3)), not_isa(O3, tNose)),
- (not_possible_t(mudContains, N3, O3):-isa(N3, tAgent), call_builtin(skolem, O3, skIsNoseInUnkArg2ofContainsFn(N3)), not_call_builtin(mudContains, N3, O3))
- ].
- %
- ;isa(O3, tNose) :-
- w_infer_by(tell54:0),
- poss(mudContains(N3, O3)),
- isa(N3, tAgent),
- skolem(O3, skIsNoseInUnkArg2ofContainsFn(N3)).
- %
- tell54:0 isa(O3,tNose):-possible_t(mudContains,N3,O3),isa(N3,tAgent),call_builtin(skolem,O3,skIsNoseInUnkArg2ofContainsFn(N3)).not_isa(N3, tAgent) :-
- w_infer_by(tell54:1),
- poss(mudContains(N3, O3)),
- skolem(O3, skIsNoseInUnkArg2ofContainsFn(N3)),
- not(isa(O3, tNose)).
- %
- ;
- tell54:1 not_isa(N3,tAgent):-possible_t(mudContains,N3,O3),call_builtin(skolem,O3,skIsNoseInUnkArg2ofContainsFn(N3)),not_isa(O3,tNose).not_isa(N3, tAgent) :-
- w_infer_by(tell54:2),
- poss(mudContains(N3, O3)),
- skolem(O3, skIsNoseInUnkArg2ofContainsFn(N3)),
- not(mudContains(N3, O3)).
- %
- ;tell54:2 not_isa(N3,tAgent):-possible_t(mudContains,N3,O3),call_builtin(skolem,O3,skIsNoseInUnkArg2ofContainsFn(N3)),not_call_builtin(mudContains,N3,O3).call_builtin(mudContains,
- N3,
- O3) :-
- w_infer_by(tell54:3),
- poss(mudContains(N3, O3)),
- isa(N3, tAgent),
- skolem(O3, skIsNoseInUnkArg2ofContainsFn(N3)).
- %
- tell54:3 call_builtin(mudContains,N3,O3):-possible_t(mudContains,N3,O3),isa(N3,tAgent),call_builtin(skolem,O3,skIsNoseInUnkArg2ofContainsFn(N3)).not_call_builtin(skolem,
- O3,
- skIsNoseInUnkArg2ofContainsFn(N3)) :-
- w_infer_by(tell54:4),
- poss(mudContains(N3, O3)),
- isa(N3, tAgent),
- not(isa(O3, tNose)).
- %
- ;
- tell54:4 not_call_builtin(skolem,O3,skIsNoseInUnkArg2ofContainsFn(N3)):-possible_t(mudContains,N3,O3),isa(N3,tAgent),not_isa(O3,tNose).not_call_builtin(skolem,
- O3,
- skIsNoseInUnkArg2ofContainsFn(N3)) :-
- w_infer_by(tell54:5),
- poss(mudContains(N3, O3)),
- isa(N3, tAgent),
- not(mudContains(N3, O3)).
- %
- tell54:5 not_call_builtin(skolem,O3,skIsNoseInUnkArg2ofContainsFn(N3)):-possible_t(mudContains,N3,O3),isa(N3,tAgent),not_call_builtin(mudContains,N3,O3).not_possible_t(mudContains,
- N3,
- O3) :-
- w_infer_by(tell54:6),
- isa(N3, tAgent),
- skolem(O3, skIsNoseInUnkArg2ofContainsFn(N3)),
- not(isa(O3, tNose)).
- %
- ;tell54:6 not_possible_t(mudContains,N3,O3):-isa(N3,tAgent),call_builtin(skolem,O3,skIsNoseInUnkArg2ofContainsFn(N3)),not_isa(O3,tNose).not_possible_t(mudContains,
- N3,
- O3) :-
- w_infer_by(tell54:7),
- isa(N3, tAgent),
- skolem(O3, skIsNoseInUnkArg2ofContainsFn(N3)),
- not(mudContains(N3, O3)).
- %
- ;tell54:7 not_possible_t(mudContains,N3,O3):-isa(N3,tAgent),call_builtin(skolem,O3,skIsNoseInUnkArg2ofContainsFn(N3)),not_call_builtin(mudContains,N3,O3).
- true.
- ?-
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement