-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expression testing and clean ups #154
Conversation
harshangrjn
commented
Oct 13, 2020
•
edited
Loading
edited
- JuMP v0.21 build error issues fixed
- Compilation error #146 (MOI support fix)
- expression.jl clean up
- eval() removal where unnecessary Unnecessary use of eval in source code #153
- NL objective parsing fix for higher-order monomials: Error in convexification of monomials #104
- Issues Reenable test: Validation Test || AMP-CONV-FACET || basic solve || examples/nlp1.jl #151 Reenable test: Validation Test || PBT-AMP-TMC || basic solve || examples/nlp3.jl #150 addressed
- Drop support for all trigonometric related functions (both in src and testing)
- Drop support of expression parsing for generic integer variables in MINLPs (both in src and testing)
Codecov Report
@@ Coverage Diff @@
## master #154 +/- ##
==========================================
+ Coverage 75.23% 77.47% +2.24%
==========================================
Files 16 16
Lines 3359 3099 -260
==========================================
- Hits 2527 2401 -126
+ Misses 832 698 -134
Continue to review full report at Codecov.
|
.travis.yml
Outdated
@@ -4,10 +4,10 @@ os: | |||
- linux | |||
- osx | |||
julia: | |||
- 1.0 | |||
- 1.5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1.5 and 1 are the same thing, 1 links to the latest 1.x release
test/runtests.jl
Outdated
@@ -37,5 +36,5 @@ end | |||
# Perform Tests | |||
include("$(alpine_dir)/test/solver.jl") | |||
include("$(alpine_dir)/test/expression.jl") | |||
include("$(alpine_dir)/test/algorithm.jl") | |||
include("$(alpine_dir)/test/utility.jl") | |||
# include("$(alpine_dir)/test/algorithm.jl") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are these commented ? This is the cause of the coverage drop
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@blegat Good point! I am cleaning up tests individually. I just created the PR but still pushing updates to the PR. It should be uncommented in the newer commits.