-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maker DAO examples stub added to deontic logic experiments #58
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are misspellings, which should be fixed
(take-action DAO AD1) | ||
|
||
(= (obliged (take-action $dao $ad)) | ||
(and (== (Facilitator $dao) True) (== (misaligned $ac) True))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
$ac
should be $ad
(or visa versa)
(and (== (Facilitator $dao) True) (== (misaligned $ac) True))) | ||
|
||
(= (obliged (be-penalized $dao $ad)) | ||
(and (and (== (Facilitator $dao) True) (== (misaligned $ac) True)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
$ac
should be $ad
or visa versa
There are some questions about this example:
a result of the example is a list of Bools but not just one Bool, why is it?
is there an effective way to find/match all the ADs for which action have been taken?