-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
issue #143: enhance disjunction-introduction (left and right) inferen…
…ce-rules
- Loading branch information
1 parent
8d9a548
commit 89aae33
Showing
37 changed files
with
1,612 additions
and
112 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
disjunction-introduction | ||
============================= | ||
|
||
Definition | ||
---------- | ||
|
||
*disjunction-introduction* is the well-known and valid :doc:`inference_rule`: | ||
|
||
.. math:: | ||
P \vdash \left( P \lor Q \right) | ||
Quotes | ||
------ | ||
|
||
"Addition (or disjunction introduction, or or introduction) is the rule of inference that allows one to infer a disjunction from either of the disjuncts." | ||
- :footcite:p:`cook_2009_dictionaryphilosophicallogic`, p8 | ||
|
||
Python implementation | ||
-------------------------- | ||
|
||
Properties | ||
^^^^^^^^^^^^^^^ | ||
|
||
.. module:: core | ||
:noindex: | ||
.. autoclass:: InferenceRuleDeclarationDict | ||
:noindex: | ||
:members: disjunction_introduction | ||
|
||
.. module:: core | ||
:noindex: | ||
.. autoclass:: InferenceRuleDeclarationDict | ||
:noindex: | ||
:members: disjunction_introduction | ||
|
||
Classes | ||
^^^^^^^^^^ | ||
|
||
.. module:: core | ||
:noindex: | ||
.. autoclass:: DisjunctionIntroductionDeclaration | ||
:members: | ||
:special-members: __init__ | ||
|
||
.. autoclass:: DisjunctionIntroductionInclusion | ||
:members: | ||
:special-members: __init__ | ||
|
||
Bibliography | ||
------------ | ||
|
||
.. footbibliography:: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
disjunction-introduction-left | ||
=============================== | ||
|
||
Definition | ||
---------- | ||
|
||
*disjunction-introduction-left* is the well-known and valid :doc:`inference_rule`: | ||
|
||
.. math:: | ||
P \vdash \left( Q \lor P \right) | ||
Quotes | ||
------ | ||
|
||
"Addition (or disjunction introduction, or or introduction) is the rule of inference that allows one to infer a disjunction from either of the disjuncts." | ||
- :footcite:p:`cook_2009_dictionaryphilosophicallogic`, p8 | ||
|
||
Python implementation | ||
-------------------------- | ||
|
||
Properties | ||
^^^^^^^^^^^^^^^ | ||
|
||
.. module:: core | ||
:noindex: | ||
.. autoclass:: InferenceRuleDeclarationDict | ||
:noindex: | ||
:members: disjunction_introduction_left | ||
|
||
.. module:: core | ||
:noindex: | ||
.. autoclass:: InferenceRuleDeclarationDict | ||
:noindex: | ||
:members: disjunction_introduction_left | ||
|
||
Classes | ||
^^^^^^^^^^ | ||
|
||
.. module:: core | ||
:noindex: | ||
.. autoclass:: DisjunctionIntroductionLeftDeclaration | ||
:members: | ||
:special-members: __init__ | ||
|
||
.. autoclass:: DisjunctionIntroductionLeftInclusion | ||
:members: | ||
:special-members: __init__ | ||
|
||
Bibliography | ||
------------ | ||
|
||
.. footbibliography:: |
53 changes: 53 additions & 0 deletions
53
docs/build/_sources/disjunction_introduction_right.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
disjunction-introduction-right | ||
=============================== | ||
|
||
Definition | ||
---------- | ||
|
||
*disjunction-introduction-right* is the well-known and valid :doc:`inference_rule`: | ||
|
||
.. math:: | ||
P \vdash \left( P \lor Q \right) | ||
Quotes | ||
------ | ||
|
||
"Addition (or disjunction introduction, or or introduction) is the rule of inference that allows one to infer a disjunction from either of the disjuncts." | ||
- :footcite:p:`cook_2009_dictionaryphilosophicallogic`, p8 | ||
|
||
Python implementation | ||
-------------------------- | ||
|
||
Properties | ||
^^^^^^^^^^^^^^^ | ||
|
||
.. module:: core | ||
:noindex: | ||
.. autoclass:: InferenceRuleDeclarationDict | ||
:noindex: | ||
:members: disjunction_introduction_right | ||
|
||
.. module:: core | ||
:noindex: | ||
.. autoclass:: InferenceRuleDeclarationDict | ||
:noindex: | ||
:members: disjunction_introduction_right | ||
|
||
Classes | ||
^^^^^^^^^^ | ||
|
||
.. module:: core | ||
:noindex: | ||
.. autoclass:: DisjunctionIntroductionRightDeclaration | ||
:members: | ||
:special-members: __init__ | ||
|
||
.. autoclass:: DisjunctionIntroductionRightInclusion | ||
:members: | ||
:special-members: __init__ | ||
|
||
Bibliography | ||
------------ | ||
|
||
.. footbibliography:: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.