Skip to content

BeAFix, for Bounded exhaustive Alloy Fix, is a technique to automatically repair Alloy models. Our technique is based on exhaustive search of repair candidates (generated by applying mutation operators) up to a certain bound (amount of mutations per marked expressions and/or a specific amount of time). As a way to reduce how many candidates we n…

License

Notifications You must be signed in to change notification settings

saiema/BeAFix

 
 

Repository files navigation

BeAFix

Our tool extends AlloyAnalyzer 5.1.0, and tries to repair an Alloy model marked with expressions to be mutated. It supports repairing expressions inside facts, assertions, functions, and predicates. A marked expression has the form {#m#([vars]) expression} where vars is a comma separated list of variables related to the marked expression, this is used by the variabilization pruning technique.

As an example we can consider the following marked expressions:

{#m#() some x : T | P[x]} where the whole quantifier expression is marked for mutation.
some x : T | {#m#(x) P[x]} where only a part of an expression is marked for mutation.

Our technique is based on exhaustive search of repair candidates (generated by applying mutation operators) up to a certain bound (amount of mutations per marked expressions and/or a specific amount of time). As a way to reduce how many candidates we need to visit in our search, we use several pruning techniques as well as prioritizing partially repaired candidates.

Builing and Importing to an IDE

Please refer to the AlloyAnalyzer project for these instructions.

You might need to manually install gradle and run gradle wrapper if gradle wrapper class can't be found.

Mutation Operators

  • AORB : Replaces binary arithmetic operators (division, multiplication, modulo, addition and subtraction).
  • BES : Given a binary expression returns both operands as mutations (a op b -> {a, b}).
  • BESOR : Replaces binary set operators (join, union, diff, intersection, and overriding).
  • COR : Replaces binary conditional operators (and, or, implies, and if and only if).
  • CUOI : Negates a boolean expression.
  • EMOR : Replaces equality operators by membership operators:
    == <-> in
    != <-> !in
  • JEE : Extends a join expression, given a.b it can generate expressions like a.b.c and a.x.y.
  • JER : Replaces part of a join expression, given a.b it can generate expressions like a.x but will not generate expressions like x.y (which replaces more than one join operand).
  • JES : Reduces a join expression by either removing one join operand or replacing a join expression with another expression with no joins (variables, signatures, fields).
  • MOR : Replaces multiplicity operators in a unary expression (no, some, lone, one).
  • NESE : Given an expression A, this operator will add, for each variable or join x, some x => A. For example:
    list'.rest = list and list'.element = e will be mutated to
    (some list'.rest && some list && some list'.element && some e) => list'.rest = list and list'.element = e
  • QTOI : Given an expression x, this operators generates no x, some x, lone x, and one x.
  • QTOR : Replaces the operator in a quantifier expression (all, lone, no, one, and some), for the moment comprehension and sum operators are not considered.
  • ROR : Replaces relational binary operators (equal, not equal, greater, not greater, greater or equal, not greater or equal, less, not less, less or equal, and not less or equal).
  • RUOD : Deletes unary relational operators (transpose, closure, and reflexive closure).
  • RUOI : Inserts unary relational operators (transpose, closure, and reflexive closure).
  • RUOR : Replaces unary relational operators (transpose, closure, and reflexive closure).
  • SSE : Extends an expression that can be viewed as a set, for example: x can be mutated to x + y.
  • SSS : Reduces an expression that can be viewed as a set, for example: x can be mutated to x - y.
  • VCR : Replaces a field, signature, variable, or constant, which is not a part of a join expression, with reachable variables, signatures, fields, and constants.

All mutations are both type checked (although some invalid mutations can happen); irrelevant mutations are also analysed and skipped, as for example, adding a closure operator to an expression with a reflexive closure operator; and finally, repeated expressions are also detected and removed from analysis.

Adding Mutation Operators

BeAFix core is implemented in org.alloytools.alloy.core.are.edu.unrc.dc. Inside the mutation.op subpackage are all operators. Any new implemented operator must then be added to Ops enum, overriding the necesessary methods:

  • isImplemented() : boolean must return either true or false and will determine if that operator will be used.
  • getOperator(CompModule) : Mutator must return the implemented operator inside the mutation.op subpackage.
  • getComplexity() : Int must return a positive number that will determine in which order (w.r.t. other operators) the operator will be used.

About

BeAFix, for Bounded exhaustive Alloy Fix, is a technique to automatically repair Alloy models. Our technique is based on exhaustive search of repair candidates (generated by applying mutation operators) up to a certain bound (amount of mutations per marked expressions and/or a specific amount of time). As a way to reduce how many candidates we n…

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 66.9%
  • C++ 16.8%
  • C 7.4%
  • Alloy 3.7%
  • Shell 3.4%
  • Makefile 0.8%
  • Other 1.0%