Skip to content

Commit

Permalink
[travis] Update travis configuration to run on stable Rust.
Browse files Browse the repository at this point in the history
  • Loading branch information
ptal committed May 24, 2018
1 parent b4dafbb commit 4a3c32d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -17,7 +17,7 @@ env:
- secure: dIur06XYomBukvYR0aymt8D6YQpTGYvejZtInEmjOdnWziJJZmQ+HuTXMnXrrwFEFSC21uQfgBwhlItwcEzFu1ydx1LlxuUZh8sFjTFFrCWo3hRpyb4JGCAwoNvUZ1/d7MwHjGxjzFtMvnVPyo/wHlE2xgkWHZqmJfDgGkkpBuk=

language: rust
rust: nightly
rust: stable
script:
- cargo build
- cargo test
Expand Down
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -6,7 +6,7 @@ Constraint Programming Library
[travis-image]: https://travis-ci.org/ptal/pcp.png
[travis]: https://travis-ci.org/ptal/pcp

PCP is a library in *stable Rust* to model constraint satisfaction problems (CSPs) in the constraint programming paradigm.
PCP is a library to model constraint satisfaction problems (CSPs) in the constraint programming paradigm.
Constraint programming is a paradigm for expressing problems in terms of mathematical relations, called constraints, over variables (e.g. `x > y`).
Constraints are an intuitive approach to naturally describe many real-world problems which initially emerged as a subfield of artificial intelligence and operational research.
The flagship applications in constraint programming encompass scheduling, configuration and vehicles routing problems.
Expand All @@ -16,6 +16,8 @@ It is a programming paradigm in its own right and being able to program in Rust
This is why I strongly recommend the class [Basic Modeling for Discrete Optimization](https://www.coursera.org/learn/basic-modeling) for those who wants to learn this paradigm.
Meanwhile you can already look at the [documentation](https://docs.rs/crate/pcp/1.0.0) for a running example.

PCP compiles on the *stable Rust* channel.

### References

Existing libraries are an invaluable source of inspiration:
Expand Down

0 comments on commit 4a3c32d

Please sign in to comment.