claferIG: claferIG is an interactive tool that generates instances of Clafer models.

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

Clafer is a powerful (equivalent to first-order predicate logic) yet lightweight structural modeling language. Despite simplicity and conciseness of Clafer, writing correct models remains challenging due to hard-to-predict interactions among all constraints expressed in the model. Clafer instance generator (ClaferIG) is an interactive tool that generates instances and counter examples of concrete clafers in a Clafer model. If the concrete clafers do not have contradicting constraints, the generator produces valid instance data. Otherwise, the generator produces an unsatisfiable core which included all contradicting constraints and generates a counter example by removing one constraint from the core. The generator can potentially produce many instances if the concrete clafers are not fully specialized. The generator produces different instances on-demand. With these capabilities, the instance generator can be used for debugging models: checking the consistency of the model and detecting under- and overconstraining of the model. The instance generator can also be used programmatically via API (the command line and interactive session interfaces only use the API).


[Skip to Readme]

Properties

Versions 0.3.5, 0.3.5.1, 0.3.6, 0.3.6.1, 0.3.7, 0.3.8, 0.3.9, 0.3.10, 0.4.0, 0.4.1, 0.4.2, 0.4.2.1, 0.4.3, 0.4.3, 0.4.4, 0.4.5
Change log CHANGES.md
Dependencies array (>=0.5.0.0), base (>=4.7.0.1 && <5), clafer (==0.4.3), claferIG (==0.4.3), cmdargs (>=0.10.12), containers (>=0.5.5.1), data-stringmap (>=1.0.1.1), directory (>=1.2.1.0), executable-path (>=0.0.3), filepath (>=1.3.0.2), haskeline (>=0.7.1.2), HaXml (==1.24 || >=1.25.3), json-builder (>=0.3), mtl (>=2.1.3.1), mtl-compat (>=0.2.1), parsec (>=3.1.5), process (>=1.2.0.0), string-conversions (>=0.3.0.3), transformers (>=0.3.0.0), transformers-compat (>=0.3 && <0.5) [details]
License MIT
Author Jimmy Liang, Michal Antkiewicz, Luke Michael Brown
Maintainer Michal Antkiewicz <mantkiew@gsd.uwaterloo.ca>
Category Model
Home page http://clafer.org
Source repo head: git clone git://github.com/gsdlab/claferIG.git
Uploaded by mantkiew at 2015-12-22T18:30:11Z

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees


Readme for claferIG-0.4.3

[back to package description]

Clafer Instance Generator

v0.4.3

Clafer is a powerful (equivalent to first-order predicate logic) yet lightweight structural modeling language. Despite simplicity and conciseness of Clafer, writing correct models remains challenging due to hard-to-predict interactions among all constraints expressed in the model.

Clafer instance generator (ClaferIG) is an interactive tool that generates instances and counter examples of concrete clafers in a Clafer model. If the concrete clafers do not have contradicting constraints, the generator produces valid instance data. Otherwise, the generator produces an unsatisfiable core which included all contradicting constraints and generates a counter example by removing one constraint from the core. The generator can potentially produce many instances if the concrete clafers are not fully specialized. The generator produces different instances on-demand. With these capabilities, the instance generator can be used for debugging models: checking the consistency of the model and detecting under- and overconstraining of the model. The instance generator can also be used programmatically via API (the command line and interactive session interfaces only use the API).

For more information, see technical report.

Contributors

Getting the Clafer Instance Generator

Clafer can be installed from a binary distribution (preferred), from Hackage, and from the source code.

Dependencies for running

Regardless of the installation method, the following are required:

Installation from binaries

Binary distributions of the release 0.4.3 of Clafer Tools for Windows, Mac, and Linux, can be downloaded from Clafer Tools - Binary Distributions.

  1. download the binaries and unpack <target directory> of your choice,
  2. add the <target directory> to your system path so that the executables can be found.

Installation From Hackage

Clafer is now available on Hackage and it can be installed using either stack or cabal-install.

Installation using stack

Stack is the only requirement: no other Haskell tooling needs to be installed because stack will automatically install the needed Haskell build tools.

  1. install stack
  2. execute

Installation using cabal-install

Dependencies

  1. Install GHC
  2. cabal update
  3. cabal install claferIG
  4. cd <cabal's lib or share folder> (C:\Users\<user>\AppData\Roaming\cabal\i386-windows-ghc-7.10.2\claferIG-0.4.3 on Windows or .cabal/share/x86_64-linux-ghc-7.10.2/claferIG-0.4.3/ on Linux)
  5. to automatically download alloy4.2.jar
  1. copy the following into the Cabal's bin folder

Installation from the source code

Dependencies

On Windows

Important: branches must correspond

All related projects are following the simultaneous release model. The branch master contains releases, whereas the branch develop contains code under development. When building the tools, the branches should match. Releases from branches 'masterare guaranteed to work well together. Development versions from branchesdevelop` should work well together but this might not always be the case.

Building

  1. install the Clafer compiler
  2. in some <source directory>, execute git clone git://github.com/gsdlab/claferIG.git
  3. in <source directory>/claferIG, execute stack setup. This will install all dependencies, build tools, and MSYS2 (on Windows).
  4. cd <source directory>/claferIG

Installation

  1. execute make install to=<target directory>

Note:

On Windows, use / with the make command instead of \, e.g., make install to=/c/clafer-tools-0.4.3/

Integration with Sublime Text 2/3

See ClaferToolsST

Integration with VIM

See clafer-vim

Usage

Clafer Instance Generator can be used in interactive and batch modes, as well as, an API.

Command-line Usage

(As printed by claferIG --help)

ClaferIG v0.4.3

claferIG [OPTIONS] [FILE]

Common flags:
     --all=INT                                 Saves all instances up to the
                                               provided scope or a
                                               counterexample.
     --savedir=FILE                            Specify the directory for
                                               storing saved files.
     --alloysolution                           Convert Alloy solution to a
                                               Clafer solution.
  -b --bitwidth=INTEGER                        Set the bitwidth for integers.
  -m --maxint=INTEGER                          Set the bitwidth for integers
                                               based on the largest required
                                               number. Overrides --bitwidth
                                               argument.
  -u --useuids                                 Use unique clafer names in the
                                               Clafer solution.
     --addtypes                                Add colon/reference types to
                                               the Clafer solution.
  -j --json                                    Render solution as JSON
                                               (forces 'addUids').
  -i --flatten-inheritance-comp                Flatten inheritance during
                                               compiling ('alloy' and 'Alloy'
                                               modes only)
  -l --no-layout-comp                          Don't resolve off-side rule
                                               layout during compiling
  -c --check-duplicates-comp                   Check duplicated clafer names
                                               during compiling
  -f --skip-resolver-comp                      Skip name resolution during
                                               compiling
     --ss=SCOPESTRATEGY --scope-strategy-comp  Use scope computation strategy
                                               during compiling: none or simple
                                               (default).
  -? --help                                    Display help message
  -V --version                                 Print version information

claferIG <model file name>.cfr

claferIG <model file name>.cfr -all <scope>

Interactive Session Usage

In the interactive mode, the users can invoke the following commands by pressing a letter marked in the command name between '' or the whole command as marked by '':

ClaferIG v0.4.3

You can invoke the following commands as indicated by single quotes:
[tab]              - print the available commands
                   - auto-complete command name, a clafer name, or clafer instance name in a given context
'n'ext, [enter]    - to produce the next instance if available or to output a message that no more
                     instances exist within the given scope
'i'ncrease         - to increase the maximum number of instances of a given clafer or all clafers (scope)
's'et              - to set the maximum number of instances of a given clafer or all clafers (scope)
'm'axint, 'maxint' - to set the bitwidth by providing the largest integer
sa'v'e             - to save all instances displayed so far or a counterexample to files named
                     <model file name>.cfr.<instance number>.data, one instance per file
'q'uit             - to quit the interactive session
'r'eload           - to reload your clafer model
'h'elp             - to display this menu options summary
'scope'            - to print out the values of the global scope and individual Clafer scopes
'saveScopes'       - to generate a '<model>.cfr-scope' file with the current scopes
'loadScopes'       - to load scopes from a '<model>.cfr-scope' file
'setUnsatCoreMinimization' - to choose UnSAT core minimization strategy [fastest | medium | best]. Default: fastest
'c', 'claferModel' - to print out the original Clafer model verbatim
'a', 'alloyModel'  - to print out the output of Clafer translator verbatim
'alloyInstance'    - to print out the Alloy xml document of the most recent solution
'f'ind             - to print a Clafer with given name found in the most recent solution

Parameterized command usage:
'i [enter]'         - to increase for all clafers by 1
'i <name> [enter]'  - to increase for the clafer <name> by 1
'i <name> <number>' - to increase for the clafer <name> by <number>
's <number> [enter]'- to set for the clafers to <number>
's <name> <number>' - to set for the clafer <name> to <number>
'f <name>'          - to display a clafer <name>
'setUnsatCoreMinimization fastest' - fastest but the worst
'setUnsatCoreMinimization medium'
'setUnsatCoreMinimization best' - best but slowest even for modest size cores

Output format

There are two output formats: native (plain text, default) and JSON (--json).

Instance data (native)

The instance data notation is very similar to a regular Clafer notation for concrete clafers with a few differences:

Additionally, the data notation contains concrete values of the clafers and suffix numbers to distinguish among multiple instances of the same clafer.

Note:

The instance data models could be read by the Clafer translator if the translator had simple type inference support.

Example

For a model

abstract A
    a ?
    b +
    c -> integer ?
    d -> E 2
    g -> E 2
        h -> integer

abstract E
    f ->> integer +

a1 : A
e1 : E
e2 : E

A possible instance data looks as follows:

=== Instance 1 Begin ===

a1
    b$1
    b$2
    c -> 10
    d$1 -> e1
    d$2 -> e2
    g1 -> e1
        h$1 -> 5
    g2 -> e2
        h$2 -> 2

e1
    f$1 -> 2
    f$2 -> 3
    f$3 -> 4
    f$4 -> 2

--- Instance 1 End ---

Near-miss instance

Near-miss instance notation is the same as the instance data notation. Additionally, it indicates which constraints belong to the UnSAT Core.

Example

For a model

abstract A
    a ?
    b ?
        [ a ]   // C1

a1 : A
    [ no a ]    // C2
    [ b ]       // C3

Constraints C1, C2, and C3 form an UnSAT Core. Removal of any of them will make the model satisfiable. The constraint C1 is part of the model and cannot be removed (part of domain knowledge). Therefore, either C2 or C3 must be removed to remove the inconsistency.

On possible near-miss instance:

a1
    a
    b

Here, C1 and C3 are satisfied but C2 is not. To resolve the conflict and assuming that the counter example is actually a correct instance data, the user has to modify the model by removing C2. However, should the counter example actually represent incorrect instance data, the user can remove C3 to resolve the inconsistency.

Troubleshooting

If you get an error:

Exception in thread "main" java.lang.UnsatisfiedLinkError: no minisatproverx1 in java.library.path
 at java.lang.ClassLoader.loadLibrary(Unknown Source)
 at java.lang.Runtime.loadLibrary0(Unknown Source)
 at java.lang.System.loadLibrary(Unknown Source)
 at org.clafer.ig.AlloyIG.main(AlloyIG.java:275)

it means that you have a 64bit Java on Windows instead of the required 32bit one. On Windows, Alloy only supports Minisat with UnSAT core on 32bit Java. There's nothing we can do.

How it works

The Clafer instance generator:

Need help?