Skip to main content

Samovar: model worlds using propositions and run simulations in them

Project description

Samovar

Version 0.6 | Entry @ catseye.tc | See also: The League of Extraordinarily Dull GentlemenThe Swallows


Samovar is a domain-specific language (DSL) for modelling a world using propositions (facts), and possible events that can occur based on those facts, changing them.

Here is a short example of a Samovar description:

scenario IgnatzWithBrick {
  
    [actor(?A),item(?I),~holding(?A,?I)]  ?A picks up the ?I.   [holding(?A,?I)]
    [actor(?A),item(?I),holding(?A,?I)]   ?A puts down the ?I.  [~holding(?A,?I)]

    actor(Ignatz).
    item(brick).

    goal [].
}

And an implementation of Samovar could take this scenario and use it to, among other things, generate textual descriptions of chains of events like

Ignatz picks up the brick. Ignatz puts down the brick.

Of course, this is a very simple example. (It doesn't even prevent two actors from picking up the same item at the same time!) For more complex examples, and a fuller description of the language, see doc/Samovar.md, which also serves as a test suite.

Implementation

The reference implementation of Samovar, samovar, is written in Python. It can run under either Python 2.7 or Python 3.x (tested with 3.5 or higher.)

Discussion

This looks like logic programming but the internals are actually much simpler, and what it's doing is not logical inference.

The internals are far simpler than an inference engine or a theorem prover: there are no logical rules in the database, only propositions, so they can be selected by simple pattern-matching rather than full unification.

I originally described it as an "assertion-retraction engine", which could be thought of as a highly stylized form of Prolog programming. Alternately, it could be thought of as assigning preconditions and postconditions, like in Hoare logic, to actions in a world-model. Instead of constructing a proof, though, we simply chain actions together, by selecting any next one whose preconditions hold, and altering the world so that its postconditions hold.

In (I think) autumn 2019, I came across the concept of a production system, and I realized that is basically what Samovar implements. Researching it further, I discovered CLIPS, a production system built in 1985, and I realized that Samovar is not essentially different from an inefficiently-implemented, stripped-down version of CLIPS.

The main innovation in Samovar is the ability to "narrate" the choices the production system makes, with human-readable text.

This isn't too surprising, since my goal with Samovar was to make an expressive language, a syntax in which the author could write a story generator without the undue effort of switching context between prose and code. Picking logical propositions for the "code" and placing them before and after each fragment of prose was a reasonably "ergonomic" choice, and happens to coincide with the structure of a production system.

TODO

  • Maybe allow variables to be notated so that they can bind reflexively, e.g. ?*A looks at ?*B can bind both variables to Alice.
  • Make ?_ work such that you can say ¬holding(?_, club) to mean "if no one is holding the club".

Project details


Release history Release notifications | RSS feed

This version

0.6

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

samovar-py-0.6.tar.gz (16.9 kB view details)

Uploaded Source

Built Distribution

samovar_py-0.6-py3-none-any.whl (18.0 kB view details)

Uploaded Python 3

File details

Details for the file samovar-py-0.6.tar.gz.

File metadata

  • Download URL: samovar-py-0.6.tar.gz
  • Upload date:
  • Size: 16.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for samovar-py-0.6.tar.gz
Algorithm Hash digest
SHA256 b755bb723106ab1e2ad4ff1426f6953c6d40495e0ed22ac411952e4199dbe7d4
MD5 8489e5107311b4435bc20c1300708288
BLAKE2b-256 4601128ee5c182b85c45cd2652705b6077b57396421bf3018c87e5754d942418

See more details on using hashes here.

File details

Details for the file samovar_py-0.6-py3-none-any.whl.

File metadata

  • Download URL: samovar_py-0.6-py3-none-any.whl
  • Upload date:
  • Size: 18.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for samovar_py-0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 dac448d9ce0378ec1436b7d1304075a9f40a5352b80e2b159f8edcf350cd6238
MD5 70e2b71c48dbf3c5c93ecd96d07c5240
BLAKE2b-256 f72f68a0f2345b5fb0d8b56662b20b63e1f177f408b7f9e6cd9a3d7d3cb29706

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page