Skip to content

Commit

Permalink
Expanded examples, better readme, travis
Browse files Browse the repository at this point in the history
  • Loading branch information
rcnlee committed Sep 30, 2017
1 parent 41dc3d7 commit 3010e70
Show file tree
Hide file tree
Showing 3 changed files with 657 additions and 40 deletions.
17 changes: 6 additions & 11 deletions .travis.yml
@@ -1,19 +1,14 @@
language: julia
os:
- linux
sudo: required
dist: trusty
julia:
- 0.6
- nightly
matrix:
allow_failures:
- julia: nightly
notifications:
email: false
before_install:
# - sudo apt-get -qq update
- sudo apt-get install git
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.test("ExprRules"; coverage=true)'
- sudo apt-get -qq update
#script: # use the default script section which is equivalent to the following
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("ExprRules"); Pkg.test("ExprRules"; coverage=true)'
after_success:
- julia -e 'cd(Pkg.dir("ExprRules")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
11 changes: 10 additions & 1 deletion README.md
@@ -1,6 +1,15 @@
# ExprRules.jl
Grammar Trees that generate Julia Expressions.

Base functions for the generation and optimization of Julia expressions derived from a grammar.

## Usage

Please see the [example notebook](http://nbviewer.ipython.org/github/sisl/ExprRules.jl/blob/master/examples/grammar.ipynb).

## Maintainers:

* Ritchie Lee, ritchie.lee@sv.cmu.edu
* Tim Wheeler, tawheeler@stanford.edu
* Mykel Kochenderfer, mykel@stanford.edu

[![Build Status](https://travis-ci.org/sisl/ExprRules.jl.svg?branch=master)](https://travis-ci.org/sisl/ExprRules.jl) [![Coverage Status](https://coveralls.io/repos/sisl/ExprRules.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/sisl/ExprRules.jl?branch=master)

0 comments on commit 3010e70

Please sign in to comment.