model-checker


Namemodel-checker JSON
Version 0.6.10 PyPI version JSON
download
home_pageNone
SummaryA hyperintensional theorem prover for modal, counterfactual conditional, constitutive explanatory, and extensional operators.
upload_time2025-01-04 00:00:11
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseMIT
keywords semantics z3 logic counterfactuals modality model checker theorem prover hyperintensionality
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Model Checker

This package provides a programmatic semantics for a number of hyperintensional operators along with a general purpose methodology for introducing semantic clauses for additional operators, studying their logics.
Instead of computing whether a given sentence is a logical consequence of some set of sentences by hand, these resources allow users to search for countermodels or establish logical consequence up to a finite level complexity.
Although computational systems cannot search the space of all models (typically a proper class), proving that there are no models up to some finite level of complexity provides evidence that the logical consequence in question holds in general where the strength of the evidence is proportional to the range of the models surveyed.
If finite countermodels exist, users will be able to generate and print those models rather than attempting to do so by hand.

Instead of only developing a model-theoretic version of a semantics and working out the consequence by hand or not at all, this project draws on the SMT solver [Z3](https://github.com/Z3Prover/z3) to find hyperintensional countermodels and establish validity over models up to a user specified level of complexity in a propositional language with the following operators:

  - `neg` for _negation_
  - `wedge` for _conjunction_
  - `vee` for _disjunction_
  - `rightarrow` for the _material conditional_
  - `leftrightarrow` for the _material biconditional_
  - `boxright` for the _must counterfactual conditional_
  - `circleright` for the _might counterfactual conditional_
  - `Box` for _necessity_
  - `Diamond` for _possibility_
  - `leq` for _ground_ read 'sufficient for'
  - `sqsubseteq` for _essence_ read 'necessary for'
  - `equiv` for _propositional identity_ read 'just is for'
  - `preceq` for _relevance_

A programmatic methodology in semantics streamlines the otherwise computationally grueling process of developing and testing novel semantic theories and exploring their logics.
The [hyperintensional semantics](#Hyperintensional-Semantics) for the operators indicated above is briefly discussed below.
In addition to including semantic clauses for the operators indicated above, this project provides templates and flexible tooling that can be adapted to accommodate new operators.
By easing the process of investigating increasingly complex semantic theories, this methodology aims to support the growth and maturity of semantics as a discipline.

Although computational resources are common place, the ability to make use of these resources to develop and explore the implications of novel semantic theories remains limited.
For instance, [Prover9 and Mace](https://www.cs.unm.edu/~mccune/prover9/) are restricted to first-order and equational statements.
However, for the purposes of semantics, it is desirable to: (1) introduce a range of primitive operators; (2) specify novel semantic clauses for those operators; (3) define frame constraints and a space of models for the resulting language; (4) test which sentences are a logical consequence of which; and (5) print readable countermodels if there are any.
Rather than displacing model theory and proof theory, developing and testing a programmatic semantics for a language aims to support the study of extensionally adequate logics before attempting to establish completeness.


### Screenshot

Example images can be found [here](https://github.com/benbrastmckie/ModelChecker/blob/master/Images/screenshots.md).

## Installation

```
pip install model-checker
```

The project has the `z3-solver` as a dependency and will be installed automatically.
Accessible installation instructions can be found in the GitHub [repo](https://github.com/benbrastmckie/ModelChecker?tab=readme-ov-file#installation).
More information about installing python packages can also be found [here](https://packaging.python.org/en/latest/tutorials/installing-packages/).

## Updating

Once installed, you can check the current version of the `model-checker` with:

```
model-checker -v
```

To update to the latest version, run:

```
model-checker -u
```

## Instructions

Run `model-checker` in the terminal without arguments to create a new project with the following modules:

  - `semantic.py` specifies the Z3 primitives, frame constraints, models, theory of logical consequence, defined semantic terms, theory of propositions, and instructions for displaying countermodels.
  - `operators.py` specifies the semantic clauses for the primitive operators included in the default language along with a number of defined operators.
  - `examples.py` specifies the settings, a number of examples, and the protocol for finding and printing countermodels if there are any.

After changing to the project directory that you created, run `model-checker project_examples.py` to find a countermodel if there is any.
The settings specify the following inputs where the defaults are indicated below:

  - The number of atomic states to include in each model: `N = 3`.
  - An option to require all sentence letters to be contingent: `contingent = False`.
  - An option to require all sentence letters to have at least one verifier and at least one falsifier: `non_empty = False`.
  - An option to prevent sentence letters from having the null state as a verifier or a falsifier: `non_null = False`.
  - An option to prevent sentence letters from having overlapping verifiers or falsifiers: `disjoint = False`.
  - An option to print impossible states: `print_impssible = False`.
  <!-- - Find a model with the smallest number of atomic elements: `optimize_bool = False`. -->
  - An option to print all Z3 constraints or unsatisfiable core constraints: `print_constraints = False`.
  - An option to prompt the user to append the output to the current file or to create a new file: `save_output = False`.
  - The maximum time in seconds to spend looking for a model: `max_time = 1`.

Examples are specified by defining lists of premises and conclusions where the defaults are empty lists:

  - A list of zero or more premises that are treated conjunctively: `premises = []`.
  - A list of zero or more conclusions that are treated disjunctively: `conclusions = []`.

Users can override these settings from the command line by including the following flags:

  - Include `-c` to set `contingent = True`.
  - Include `-e` to set `non_empty = True`.
  - Include `-n` to set `non_null = True`.
  - Include `-d` to set `disjoint = True`.
  - Include `-i` to set `print_impossibe = True`.
  - Include `-p` to set `print_constraints = True`.
  - Include `-s` to set `save_bool = True`.

Additional flags have been included in order to manage the package version:

  - Include `-h` to print help information about the package and its usage.
  - Include `-v` to print the installed version number.
  - Include `-u` to upgrade to the latest version.

## Hyperintensional Semantics

This section sketches the underlying semantics.
More information can be found in the GitHub [repository](https://github.com/benbrastmckie/ModelChecker). 

The semantics is hyperintensional insofar as sentences are evaluated at _states_ which may be partial rather than total as in intensional semantic theories.
States are modeled by bitvectors of a specified length (e.g., `#b00101` has length `5`), where _state fusion_ is modeled by the bitwise OR operator `|`.
For instance, `#b00101 | #b11001 = #b11101`.
The _atomic states_ have exactly one occurrence of `1` and the _null state_ has no occurrences of `1`.
The space of states is finite and closed under fusion.

States are named by lowercase letters in order to print readable countermodels.
Fusions are printed using `.` where `a.b` is the fusion of the states `a` and `b`.
A state `a` is _part_ of a state `b` just in case `a.b = b`.
States may be either _possible_ or _impossible_ where the null state is required to be possible and every part of a possible state is possible.
The states `a` and `b` are _compatible_ just in case `a.b` is possible.
A _world state_ is any state that is both possible and includes every compatible state as a part.

Sentences are assigned _verifier states_ and _falsifier states_ where both the verifiers and falsifiers are required to be closed under fusion.
A sentence is _true at_ a world state `w` just in case `w` includes a verifier for that sentence as a part and _false at_ `w` just in case `w` includes a falsifier for that sentence as a part.
In order to ensure that sentence letters have at most one truth-value at each world state, a fusion `a.b` is required to be impossible whenever `a` is verifier for a sentence letter `A` and `b` is a falsifier for `A`.
Additionally, sentence letters are guaranteed to have at least one truth-value at each world state by requiring every possible state to be compatible with either a verifier or falsifier for any sentence letter.

A _negated sentence_ is verified by the falsifiers for the sentence negated and falsified by the verifiers for the sentence negated.
A _conjunctive sentence_ is verified by the pairwise fusions of verifiers for the conjuncts and falsified by falsifiers for either of the conjuncts or fusions thereof.
A _disjunctive sentence_ is verified by the verifiers for either disjunct or fusions thereof and falsified by pairwise fusions of falsifiers for the disjuncts.
Conjunction and disjunction are dual operators obeying the standard idempotence and De Morgan laws.
The absorption laws do not hold, nor does conjunction distribute over disjunction, nor _vice versa_.
For a defense of the background theory of hyperintensional propositions, see this [paper](https://link.springer.com/article/10.1007/s10992-021-09612-w).

<!-- By contrast with the _bilateral_ extensional operators which treat both verifiers and falsifiers, the semantics for `not` is _unilateral_. -->
<!-- In particular `not A` is verified by a state `s` just in case every non-null part of `s` is incompatible with a verifier for `A` and every verifier for `A` is incompatible with some non-null part of `s`. -->
<!-- This semantics is further motivated and elaborated in [Bernard and Champollion](https://ling.auf.net/lingbuzz/007730/current.html) and included here for comparison. -->

A _necessity sentence_ `Box A` is true at a world just in case every world state includes a part that verifies `A` and a _possibility sentence_ `Diamond A` is true at a world just in case some world state includes a part that verifies `A`.
Given a world state `w` and state `s`, an `s`_-alternative_ to `w` is any world state to include as parts both `s` and a maximal part of `w` that is compatible with `s`.
A _must counterfactual conditional sentences_ `A boxright B` is true at a world state `w` just in case its consequent is true at any `s`-alternative to `w` for any verifier `s` for the antecedent of the counterfactual.
A _might counterfactual conditional sentences_ `A boxright B` is true at a world state `w` just in case its consequent is true at some `s`-alternative to `w` for some verifier `s` for the antecedent of the counterfactual.
The semantic theory for counterfactual conditionals is motivated and further elaborated in this accompanying [paper](https://github.com/benbrastmckie/ModelChecker/blob/master/Counterfactuals.pdf).
This account builds on [Fine 2012](https://www.pdcnet.org/jphil/content/jphil_2012_0109_0003_0221_0246) and [Fine2012a](https://link.springer.com/article/10.1007/s11229-012-0094-y?error=cookies_not_supported&code=5166a4da-1834-438c-9f93-75b61f58b6db).

A _grounding sentence_ `A leq B` may be read '`A` is _sufficient for_ `B`' and an _essence sentence_ `A sqsubseteq B` may be read '`A` is _necessary for_ `B`'.
A _propositional identity sentence_ `A equiv B` may be read '`A` _just is for_ `B`'.
A _relevance sentence_ `A preceq B` may be read '`A` _is wholly relevant to_ `B`'.
The semantics for ground requires every verifier for the antecedent to be a verifier for the consequent, any fusion of a falsifier for the antecedent and consequent to be a falsifier for the consequent, and any falsifier for the consequent to have a part that falsifies the antecedent.
The semantics for essence requires every fusion of a verifier for the antecedent and consequent to be a verifier for the consequent, any verifier for the consequent must have a part that verifies the antecedent, and every falsifier for the antecedent to be a falsifier for the consequent.
The semantics for propositional identity requires the two arguments to have the same verifiers and falsifiers.
The semantics for relevance requires any fusion of verifiers for the antecedent and consequent to be a verifier for the consequent and, similarly, any fusion of falsifiers for the antecedent and consequent to be a falsifier for the consequent.
Whereas the first three constitutive operators are interdefinable, relevance is definable in terms of the other constitutive operators but not _vice versa_:

- `A leq B  :=  neg A sqsubseteq neg B  :=  (A vee B) equiv B`.
- `A sqsubseteq B  :=  neg A leq neg B  :=  (A wedge B) equiv B`.
- `A equiv B  :=  (A leq B) wedge (B leq A)  :=  (A sqsubseteq B) wedge (B sqsubseteq A)`.
- `A preceq B  :=  (A wedge B) leq B :=  (A vee B) sqsubseteq B`.

Instead of a Boolean lattice as in extensional and intensional semantics theories, the space of hyperintensional propositions forms a non-interlaced bilattice as described in this [paper](https://link.springer.com/article/10.1007/s10992-021-09612-w), building on [Fine 2017](https://link.springer.com/article/10.1007/s10992-016-9413-y).

More information can be found in the GitHub [repository](https://github.com/benbrastmckie/ModelChecker) as well as in this recent [manuscript](https://github.com/benbrastmckie/ModelChecker/blob/master/Counterfactuals.pdf). 


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "model-checker",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "semantics, Z3, logic, counterfactuals, modality, model checker, theorem prover, hyperintensionality",
    "author": null,
    "author_email": "Benjamin Brast-McKie <benbrastmckie@gmail.com>, Miguel Buitrago <mbuit82@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/86/62/e89e906cb10bf53ce9ddae8424297cabceba7f84540987896c7cc0ce5f15/model_checker-0.6.10.tar.gz",
    "platform": null,
    "description": "# Model Checker\n\nThis package provides a programmatic semantics for a number of hyperintensional operators along with a general purpose methodology for introducing semantic clauses for additional operators, studying their logics.\nInstead of computing whether a given sentence is a logical consequence of some set of sentences by hand, these resources allow users to search for countermodels or establish logical consequence up to a finite level complexity.\nAlthough computational systems cannot search the space of all models (typically a proper class), proving that there are no models up to some finite level of complexity provides evidence that the logical consequence in question holds in general where the strength of the evidence is proportional to the range of the models surveyed.\nIf finite countermodels exist, users will be able to generate and print those models rather than attempting to do so by hand.\n\nInstead of only developing a model-theoretic version of a semantics and working out the consequence by hand or not at all, this project draws on the SMT solver [Z3](https://github.com/Z3Prover/z3) to find hyperintensional countermodels and establish validity over models up to a user specified level of complexity in a propositional language with the following operators:\n\n  - `neg` for _negation_\n  - `wedge` for _conjunction_\n  - `vee` for _disjunction_\n  - `rightarrow` for the _material conditional_\n  - `leftrightarrow` for the _material biconditional_\n  - `boxright` for the _must counterfactual conditional_\n  - `circleright` for the _might counterfactual conditional_\n  - `Box` for _necessity_\n  - `Diamond` for _possibility_\n  - `leq` for _ground_ read 'sufficient for'\n  - `sqsubseteq` for _essence_ read 'necessary for'\n  - `equiv` for _propositional identity_ read 'just is for'\n  - `preceq` for _relevance_\n\nA programmatic methodology in semantics streamlines the otherwise computationally grueling process of developing and testing novel semantic theories and exploring their logics.\nThe [hyperintensional semantics](#Hyperintensional-Semantics) for the operators indicated above is briefly discussed below.\nIn addition to including semantic clauses for the operators indicated above, this project provides templates and flexible tooling that can be adapted to accommodate new operators.\nBy easing the process of investigating increasingly complex semantic theories, this methodology aims to support the growth and maturity of semantics as a discipline.\n\nAlthough computational resources are common place, the ability to make use of these resources to develop and explore the implications of novel semantic theories remains limited.\nFor instance, [Prover9 and Mace](https://www.cs.unm.edu/~mccune/prover9/) are restricted to first-order and equational statements.\nHowever, for the purposes of semantics, it is desirable to: (1) introduce a range of primitive operators; (2) specify novel semantic clauses for those operators; (3) define frame constraints and a space of models for the resulting language; (4) test which sentences are a logical consequence of which; and (5) print readable countermodels if there are any.\nRather than displacing model theory and proof theory, developing and testing a programmatic semantics for a language aims to support the study of extensionally adequate logics before attempting to establish completeness.\n\n\n### Screenshot\n\nExample images can be found [here](https://github.com/benbrastmckie/ModelChecker/blob/master/Images/screenshots.md).\n\n## Installation\n\n```\npip install model-checker\n```\n\nThe project has the `z3-solver` as a dependency and will be installed automatically.\nAccessible installation instructions can be found in the GitHub [repo](https://github.com/benbrastmckie/ModelChecker?tab=readme-ov-file#installation).\nMore information about installing python packages can also be found [here](https://packaging.python.org/en/latest/tutorials/installing-packages/).\n\n## Updating\n\nOnce installed, you can check the current version of the `model-checker` with:\n\n```\nmodel-checker -v\n```\n\nTo update to the latest version, run:\n\n```\nmodel-checker -u\n```\n\n## Instructions\n\nRun `model-checker` in the terminal without arguments to create a new project with the following modules:\n\n  - `semantic.py` specifies the Z3 primitives, frame constraints, models, theory of logical consequence, defined semantic terms, theory of propositions, and instructions for displaying countermodels.\n  - `operators.py` specifies the semantic clauses for the primitive operators included in the default language along with a number of defined operators.\n  - `examples.py` specifies the settings, a number of examples, and the protocol for finding and printing countermodels if there are any.\n\nAfter changing to the project directory that you created, run `model-checker project_examples.py` to find a countermodel if there is any.\nThe settings specify the following inputs where the defaults are indicated below:\n\n  - The number of atomic states to include in each model: `N = 3`.\n  - An option to require all sentence letters to be contingent: `contingent = False`.\n  - An option to require all sentence letters to have at least one verifier and at least one falsifier: `non_empty = False`.\n  - An option to prevent sentence letters from having the null state as a verifier or a falsifier: `non_null = False`.\n  - An option to prevent sentence letters from having overlapping verifiers or falsifiers: `disjoint = False`.\n  - An option to print impossible states: `print_impssible = False`.\n  <!-- - Find a model with the smallest number of atomic elements: `optimize_bool = False`. -->\n  - An option to print all Z3 constraints or unsatisfiable core constraints: `print_constraints = False`.\n  - An option to prompt the user to append the output to the current file or to create a new file: `save_output = False`.\n  - The maximum time in seconds to spend looking for a model: `max_time = 1`.\n\nExamples are specified by defining lists of premises and conclusions where the defaults are empty lists:\n\n  - A list of zero or more premises that are treated conjunctively: `premises = []`.\n  - A list of zero or more conclusions that are treated disjunctively: `conclusions = []`.\n\nUsers can override these settings from the command line by including the following flags:\n\n  - Include `-c` to set `contingent = True`.\n  - Include `-e` to set `non_empty = True`.\n  - Include `-n` to set `non_null = True`.\n  - Include `-d` to set `disjoint = True`.\n  - Include `-i` to set `print_impossibe = True`.\n  - Include `-p` to set `print_constraints = True`.\n  - Include `-s` to set `save_bool = True`.\n\nAdditional flags have been included in order to manage the package version:\n\n  - Include `-h` to print help information about the package and its usage.\n  - Include `-v` to print the installed version number.\n  - Include `-u` to upgrade to the latest version.\n\n## Hyperintensional Semantics\n\nThis section sketches the underlying semantics.\nMore information can be found in the GitHub [repository](https://github.com/benbrastmckie/ModelChecker). \n\nThe semantics is hyperintensional insofar as sentences are evaluated at _states_ which may be partial rather than total as in intensional semantic theories.\nStates are modeled by bitvectors of a specified length (e.g., `#b00101` has length `5`), where _state fusion_ is modeled by the bitwise OR operator `|`.\nFor instance, `#b00101 | #b11001 = #b11101`.\nThe _atomic states_ have exactly one occurrence of `1` and the _null state_ has no occurrences of `1`.\nThe space of states is finite and closed under fusion.\n\nStates are named by lowercase letters in order to print readable countermodels.\nFusions are printed using `.` where `a.b` is the fusion of the states `a` and `b`.\nA state `a` is _part_ of a state `b` just in case `a.b = b`.\nStates may be either _possible_ or _impossible_ where the null state is required to be possible and every part of a possible state is possible.\nThe states `a` and `b` are _compatible_ just in case `a.b` is possible.\nA _world state_ is any state that is both possible and includes every compatible state as a part.\n\nSentences are assigned _verifier states_ and _falsifier states_ where both the verifiers and falsifiers are required to be closed under fusion.\nA sentence is _true at_ a world state `w` just in case `w` includes a verifier for that sentence as a part and _false at_ `w` just in case `w` includes a falsifier for that sentence as a part.\nIn order to ensure that sentence letters have at most one truth-value at each world state, a fusion `a.b` is required to be impossible whenever `a` is verifier for a sentence letter `A` and `b` is a falsifier for `A`.\nAdditionally, sentence letters are guaranteed to have at least one truth-value at each world state by requiring every possible state to be compatible with either a verifier or falsifier for any sentence letter.\n\nA _negated sentence_ is verified by the falsifiers for the sentence negated and falsified by the verifiers for the sentence negated.\nA _conjunctive sentence_ is verified by the pairwise fusions of verifiers for the conjuncts and falsified by falsifiers for either of the conjuncts or fusions thereof.\nA _disjunctive sentence_ is verified by the verifiers for either disjunct or fusions thereof and falsified by pairwise fusions of falsifiers for the disjuncts.\nConjunction and disjunction are dual operators obeying the standard idempotence and De Morgan laws.\nThe absorption laws do not hold, nor does conjunction distribute over disjunction, nor _vice versa_.\nFor a defense of the background theory of hyperintensional propositions, see this [paper](https://link.springer.com/article/10.1007/s10992-021-09612-w).\n\n<!-- By contrast with the _bilateral_ extensional operators which treat both verifiers and falsifiers, the semantics for `not` is _unilateral_. -->\n<!-- In particular `not A` is verified by a state `s` just in case every non-null part of `s` is incompatible with a verifier for `A` and every verifier for `A` is incompatible with some non-null part of `s`. -->\n<!-- This semantics is further motivated and elaborated in [Bernard and Champollion](https://ling.auf.net/lingbuzz/007730/current.html) and included here for comparison. -->\n\nA _necessity sentence_ `Box A` is true at a world just in case every world state includes a part that verifies `A` and a _possibility sentence_ `Diamond A` is true at a world just in case some world state includes a part that verifies `A`.\nGiven a world state `w` and state `s`, an `s`_-alternative_ to `w` is any world state to include as parts both `s` and a maximal part of `w` that is compatible with `s`.\nA _must counterfactual conditional sentences_ `A boxright B` is true at a world state `w` just in case its consequent is true at any `s`-alternative to `w` for any verifier `s` for the antecedent of the counterfactual.\nA _might counterfactual conditional sentences_ `A boxright B` is true at a world state `w` just in case its consequent is true at some `s`-alternative to `w` for some verifier `s` for the antecedent of the counterfactual.\nThe semantic theory for counterfactual conditionals is motivated and further elaborated in this accompanying [paper](https://github.com/benbrastmckie/ModelChecker/blob/master/Counterfactuals.pdf).\nThis account builds on [Fine 2012](https://www.pdcnet.org/jphil/content/jphil_2012_0109_0003_0221_0246) and [Fine2012a](https://link.springer.com/article/10.1007/s11229-012-0094-y?error=cookies_not_supported&code=5166a4da-1834-438c-9f93-75b61f58b6db).\n\nA _grounding sentence_ `A leq B` may be read '`A` is _sufficient for_ `B`' and an _essence sentence_ `A sqsubseteq B` may be read '`A` is _necessary for_ `B`'.\nA _propositional identity sentence_ `A equiv B` may be read '`A` _just is for_ `B`'.\nA _relevance sentence_ `A preceq B` may be read '`A` _is wholly relevant to_ `B`'.\nThe semantics for ground requires every verifier for the antecedent to be a verifier for the consequent, any fusion of a falsifier for the antecedent and consequent to be a falsifier for the consequent, and any falsifier for the consequent to have a part that falsifies the antecedent.\nThe semantics for essence requires every fusion of a verifier for the antecedent and consequent to be a verifier for the consequent, any verifier for the consequent must have a part that verifies the antecedent, and every falsifier for the antecedent to be a falsifier for the consequent.\nThe semantics for propositional identity requires the two arguments to have the same verifiers and falsifiers.\nThe semantics for relevance requires any fusion of verifiers for the antecedent and consequent to be a verifier for the consequent and, similarly, any fusion of falsifiers for the antecedent and consequent to be a falsifier for the consequent.\nWhereas the first three constitutive operators are interdefinable, relevance is definable in terms of the other constitutive operators but not _vice versa_:\n\n- `A leq B  :=  neg A sqsubseteq neg B  :=  (A vee B) equiv B`.\n- `A sqsubseteq B  :=  neg A leq neg B  :=  (A wedge B) equiv B`.\n- `A equiv B  :=  (A leq B) wedge (B leq A)  :=  (A sqsubseteq B) wedge (B sqsubseteq A)`.\n- `A preceq B  :=  (A wedge B) leq B :=  (A vee B) sqsubseteq B`.\n\nInstead of a Boolean lattice as in extensional and intensional semantics theories, the space of hyperintensional propositions forms a non-interlaced bilattice as described in this [paper](https://link.springer.com/article/10.1007/s10992-021-09612-w), building on [Fine 2017](https://link.springer.com/article/10.1007/s10992-016-9413-y).\n\nMore information can be found in the GitHub [repository](https://github.com/benbrastmckie/ModelChecker) as well as in this recent [manuscript](https://github.com/benbrastmckie/ModelChecker/blob/master/Counterfactuals.pdf). \n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A hyperintensional theorem prover for modal, counterfactual conditional, constitutive explanatory, and extensional operators.",
    "version": "0.6.10",
    "project_urls": {
        "Homepage": "https://github.com/benbrastmckie/ModelChecker",
        "Issues": "https://github.com/benbrastmckie/ModelChecker/issues"
    },
    "split_keywords": [
        "semantics",
        " z3",
        " logic",
        " counterfactuals",
        " modality",
        " model checker",
        " theorem prover",
        " hyperintensionality"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "412bd2af485c477031a515c73843c174c28cefa4fd1998635f16eb1bbceb9c7f",
                "md5": "8b832b84e35efe6868943c510f74d2ba",
                "sha256": "812fe6f56aca53952e66df679b36a1bf70a34a11612dd4f89752d74cd2e7a290"
            },
            "downloads": -1,
            "filename": "model_checker-0.6.10-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8b832b84e35efe6868943c510f74d2ba",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 51599,
            "upload_time": "2025-01-04T00:00:08",
            "upload_time_iso_8601": "2025-01-04T00:00:08.172312Z",
            "url": "https://files.pythonhosted.org/packages/41/2b/d2af485c477031a515c73843c174c28cefa4fd1998635f16eb1bbceb9c7f/model_checker-0.6.10-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8662e89e906cb10bf53ce9ddae8424297cabceba7f84540987896c7cc0ce5f15",
                "md5": "4be0c569e30ac9b6cfb7b9cf78c7e961",
                "sha256": "2f476d36cb94e89425d0f44707b51ac8b09d3f0c64ef415960da26314cbfc16e"
            },
            "downloads": -1,
            "filename": "model_checker-0.6.10.tar.gz",
            "has_sig": false,
            "md5_digest": "4be0c569e30ac9b6cfb7b9cf78c7e961",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 56364,
            "upload_time": "2025-01-04T00:00:11",
            "upload_time_iso_8601": "2025-01-04T00:00:11.105320Z",
            "url": "https://files.pythonhosted.org/packages/86/62/e89e906cb10bf53ce9ddae8424297cabceba7f84540987896c7cc0ce5f15/model_checker-0.6.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-04 00:00:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "benbrastmckie",
    "github_project": "ModelChecker",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "model-checker"
}
        
Elapsed time: 4.32296s