tff(semantics,logic, $alethic_modal == [ $domains == $constant, $designation == $rigid, $terms == $local, $modalities == $modal_system_M ] ). tff(person_decl,type,person: $tType). tff(product_decl,type,product: $tType). tff(alex_decl,type,alex: person). tff(chris_decl,type,chris: person). tff(leo_decl,type,leo: product). tff(work_hard_decl,type,work_hard: (person * product) > $o). tff(gets_rich_decl,type,gets_rich: person > $o). tff(work_hard_to_get_rich,axiom, ! [P: person] : ( ? [R: product] : work_hard(P,R) => ( {$possible} @ (gets_rich(P)) ) ) ). tff(not_all_get_rich,axiom, ~ ? [P: person] : ( {$necessary} @ (gets_rich(P)) ) ). tff(alex_works_on_leo,axiom, work_hard(alex,leo) ). tff(chris_works_on_leo,axiom, work_hard(chris,leo) ). tff(only_alex_gets_rich,conjecture, ( ( {$possible} @ (gets_rich(alex)) ) & ( {$possible} @ (~ gets_rich(chris)) ) ) ).
tff(semantics,logic, $epistemic_modal == [ $domains == $constant, $designation == $rigid, $terms == $local, $modalities == $modal_system_S4 ] ). tff(customer_decl,type,customer: $tType). tff(amount_decl,type,amount: $tType). tff(geoff_decl,type,geoff: customer). tff(account_decl,type,account: (customer * $int) > $o). tff(balance_decl,type,balance_of: customer > amount). tff(bank_knows_accounts,axiom, {$knows(#bank)} @ ( ? [N: $int] : account(geoff,N) => ? [A: amount] : A = balance_of(geoff) ) ). tff(geoffs_account_42,axiom, account(geoff,42) ). tff(teller_can_know_balance,conjecture, ? [A: amount]: {$canKnow(#teller)} @ (A = balance_of(geoff)) ).