Go to file
Alex Birkett dba84c5957 Added real world tests (not passing) 2015-02-01 22:07:32 +01:00
gradle/wrapper Initial commit 2015-01-31 13:12:57 +01:00
src Added real world tests (not passing) 2015-02-01 22:07:32 +01:00
.gitignore Initial commit 2015-01-31 13:12:57 +01:00
LICENSE Initial commit 2015-01-30 17:51:32 +01:00
README.md Update README.md 2015-02-01 21:01:44 +01:00
build.gradle Initial commit 2015-01-31 13:12:57 +01:00
gradlew.bat Initial commit 2015-01-31 13:12:57 +01:00
local.properties Initial commit 2015-01-31 13:12:57 +01:00
settings.gradle Initial commit 2015-01-31 13:12:57 +01:00

README.md

kiwi-java

A Java port of the Kiwi, a C++ implementation of the Cassowary constraint solving algorithm

Background

This project was created by porting Kiwi line for line to Java. The objective is to create a faster Java implementation of the Cassowary constraint solving algorithm.

Example usage

    Solver solver = new Solver();
    Variable x = new Variable("x");
    Variable y = new Variable("y");

    // x = 20
    solver.addConstraint(Symbolics.equals(x, 20));

    // x + 2 == y + 10
    solver.addConstraint(Symbolics.equals(Symbolics.add(x,2), Symbolics.add(y, 10)));

    solver.updateVariables();
    
    System.out.println("x " + x.getValue() + " y " + y.getValue());
    // x == 20
    // y == 12