On Tue, 2005-05-10 at 02:02 -0500, William L. Jarrold wrote:
> On Mon, 9 May 2005, Joshua N Pritikin wrote:
> > Jesus loves his father because Jesus is God's son.
> 
> Yes.  Technically this might be better put as...
> 
> Jesus loves his father. [q]
> 
> ...and then later, they can click on this and see why.  I.e. they would 
> see the premises which were:
> 
> Sons love their fathers. [p1]
> Jesus is God's son. [p2]

Hrm, do you want to do this (click to see reasons) for the pilot?  If so
then you'll need to specify dependency information.

> Actually for deductions (like the above, and like "Vienna is wet.") we 
> would want two conditions:
> 
> 1) the believability of the conclusion alone (e.g. the participant would 
> see q alone).
> 
> 2) the believabilty of the conclusion in the context of the premises (e.g. 
> the participant would we "q because p1 and p2".)

OK, that's just a matter of adding more items.

> Slightly better to say...
> 
> "The river Danube is a river."

Heh, that's funny.  :-)

> Suppose a person is experiencing some emotion, call it EMOTION-X.
> 
> Also, suppose that the opposite emotion of EMOTION-X is
> OPPOSITE-EMOTION,
> 
> It follows from the above that they are experiencing zero amount of
> OPPOSITE-EMOTION.
> 
> Actually how we word the rule could even be a variable...that is
> probably something for later.

Sure, just write an item generator.

Hrm, instead of telling me which items you want, why not just modify the
attached script?

-- 
If you are an American then support http://fairtax.org
 (Permanently replace 50,000+ pages of tax law with about 200 pages.)
#!/usr/bin/perl

use strict;
use warnings;
use lib '../src';
use OHL::Config;
use OHL::DB;

$DB = DBI->connect('DBI:Pg:dbname='. DB_BASE, '', '',
                   { RaiseError => 1, PrintError => 0, AutoCommit => 1 });

our $id = query_or_create_expert_id('.Rumination1');

while (defined( my $l = <DATA>)) {
  chomp $l;

  my $ch = bless [map { F->$_($id) } qw(assertion)],
    'OHL::DB::Construal::Chain';
  $ch->[0]{c_assertion} = $l;
  $ch->store;
}

__DATA__
Jesus loves his father because: (a) Sons love their fathers. and (b) Jesus is 
God's son.
Jesus loves his father not because: (a) Sons love their fathers. nor (b) Jesus 
is God's son.
Jesus loves his father.
Jesus does not love his father.
The city of Vienna, Austria is wet.
The city of Vienna, Austria is not wet.
Rivers are a kind of water.
If water touches x then x is wet.
The river Danube is a river.
The river Danube runs through the city of Vienna, Austria.
If a river runs through a region is touches that region.
Hillary Clinton feels zero dislike for Bill Clinton.
Hillary Clinton is married to Bill Clinton.
Spouses love each other.
Love and contempt are opposite emotions.
Suppose a person is experiencing some emotion, call it EMOTION-X. Also, suppose 
that the opposite emotion of EMOTION-X is OPPOSITE-EMOTION. It follows from the 
above that they are experiencing zero amount of OPPOSITE-EMOTION.

Attachment: signature.asc
Description: This is a digitally signed message part

_______________________________________________
Heartlogic-dev mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/heartlogic-dev

Reply via email to