weakest preimage
2011-12-12 09:09:52

The weakest preimage of a conclusion C with respect to a proof P is the most general set of assertions A, such that A entails C according to P.

Prolog-EGB computes the most general rule that can be justified by the explanation by computing the weakest preimage.

It is calculated by using regression—work iteratively backward through the explanation, computing the weakest preimage at each step.

SafeToStack(x, y)

4. Lighter(o1, o2) → SafeToStack(o1,o2)

Lighter(x, y)

3. Weight(o1, 0.6) ∧ LessThan(0.6, 5) ∧ Weight(o2,5) → Lighter(o1,o2)

Weight(x,wx), LessThan(wx, wy), Weight(y,wy)

2. Type(o2,endtable) → Weight(o2,5)

Weight(x,wx), LessThan(wx,5), Type(y,endtable)

1. Volume(o1,2) ∧ Density(o1,0.3) ∧ Equal(0.6, 2*0.3) → Weight(o1,0.6)

Volume(x,vx), Density(x,dx), Equal(wx, vx*dx), LessThan(wx,5), Type(y,endtable)

The final Horn clause has a body that corresponds to the weakest preconditions, and the head is the concept:

SafeToStack(x,y) ← Volume(x, vx) ∧ Density(x,dx) ∧ Equal(wx, vx*dx) ∧ LessThan(wx,5) ∧ Type(y,endtable)

▼ more
asus mb
2011-12-10 22:27:17

ftp://ftp.asus.com.tw/pub/ASUS/mb/socketAM3/M4A87TD_USB3/

▼ more
옵션중 하나만 빼면
2011-12-10 18:30:19

다른건 다할수있지 ㅋ

▼ more
book
2011-12-09 18:01:12

Q learning: (11) 370 ~ 380

EBNN: (6) 351 ~ 356

CIGOL: (10) 291 ~ 300

Prolog-EBG: (13) 312 ~ 324

Foil: Example돌려보기

KBANN

TangentProp

FOCL

▼ more