From 3b6bb56208c7074783507833d6a300c3b6c6fa0b Mon Sep 17 00:00:00 2001 From: Miles Lubin Date: Thu, 23 Feb 2017 10:15:34 -0500 Subject: [PATCH] bump copyright to 2017 and prep 0.16 --- doc/conf.py | 6 +++--- examples/basic.jl | 2 +- examples/bnatt350.jl | 2 +- examples/cannery.jl | 2 +- examples/diet.jl | 2 +- examples/iis.jl | 2 +- examples/knapsack.jl | 2 +- examples/mle.jl | 2 +- examples/multi.jl | 2 +- examples/noswot.jl | 2 +- examples/optcontrol.jl | 2 +- examples/prod.jl | 2 +- examples/qcp.jl | 2 +- examples/rosenbrock.jl | 2 +- examples/simpleheur.jl | 2 +- examples/simplelazy.jl | 2 +- examples/simplelazy2.jl | 2 +- examples/simpleusercut.jl | 2 +- examples/steelT3.jl | 2 +- examples/sudoku.jl | 2 +- examples/transp.jl | 2 +- examples/tsp.jl | 2 +- examples/urbanplan.jl | 2 +- src/JuMP.jl | 2 +- src/JuMPArray.jl | 2 +- src/JuMPContainer.jl | 2 +- src/affexpr.jl | 2 +- src/callbacks.jl | 2 +- src/deprecated.jl | 2 +- src/macros.jl | 2 +- src/nlp.jl | 2 +- src/norms.jl | 2 +- src/operators.jl | 2 +- src/parseExpr_staged.jl | 2 +- src/parsenlp.jl | 2 +- src/precompile.jl | 2 +- src/print.jl | 2 +- src/quadexpr.jl | 2 +- src/solvers.jl | 2 +- src/sos.jl | 2 +- src/utils.jl | 2 +- src/writers.jl | 2 +- test/callback.jl | 2 +- test/expr.jl | 2 +- test/fuzzer.jl | 2 +- test/hockschittkowski/hs109.jl | 2 +- test/hockschittkowski/hs110.jl | 2 +- test/hockschittkowski/hs111.jl | 2 +- test/hockschittkowski/hs112.jl | 2 +- test/hockschittkowski/hs114.jl | 2 +- test/hockschittkowski/hs116.jl | 2 +- test/hockschittkowski/hs118.jl | 2 +- test/hockschittkowski/runhs.jl | 2 +- test/hygiene.jl | 2 +- test/model.jl | 2 +- test/nonlinear.jl | 2 +- test/operator.jl | 2 +- test/print.jl | 2 +- test/probmod.jl | 2 +- test/qcqpmodel.jl | 2 +- test/runtests.jl | 2 +- test/solvers.jl | 2 +- test/variable.jl | 2 +- 63 files changed, 65 insertions(+), 65 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 07ead8f6b1e..a4ebe0ec1f1 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -50,16 +50,16 @@ # General information about the project. project = u'JuMP -- Julia for Mathematical Optimization' AUTHORS = u"Miles Lubin, Iain Dunning, and Joey Huchette" -copyright = u'2016, '+AUTHORS +copyright = u'2017, '+AUTHORS # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '0.15' +version = '0.16' # The full version, including alpha/beta/rc tags. -release = '0.15' +release = '0.16' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/examples/basic.jl b/examples/basic.jl index 7589dc8f55f..96ca89e0f84 100644 --- a/examples/basic.jl +++ b/examples/basic.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/bnatt350.jl b/examples/bnatt350.jl index f5921aca747..d7f57cadc5f 100644 --- a/examples/bnatt350.jl +++ b/examples/bnatt350.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/cannery.jl b/examples/cannery.jl index 2b585e67f1a..5486248cd83 100644 --- a/examples/cannery.jl +++ b/examples/cannery.jl @@ -1,5 +1,5 @@ ############################################################################# -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/diet.jl b/examples/diet.jl index f01c40e0e1a..88671fe8bd4 100644 --- a/examples/diet.jl +++ b/examples/diet.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/iis.jl b/examples/iis.jl index 40dba6a3a76..2dbee60a37f 100644 --- a/examples/iis.jl +++ b/examples/iis.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/knapsack.jl b/examples/knapsack.jl index 8908075dcd1..9324dd8e350 100644 --- a/examples/knapsack.jl +++ b/examples/knapsack.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/mle.jl b/examples/mle.jl index f608a24174f..1cf4ebef904 100644 --- a/examples/mle.jl +++ b/examples/mle.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/multi.jl b/examples/multi.jl index a62f49acc50..886fa93b97b 100644 --- a/examples/multi.jl +++ b/examples/multi.jl @@ -1,5 +1,5 @@ ############################################################################# -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/noswot.jl b/examples/noswot.jl index 54054d6bf7f..f9875af84ad 100644 --- a/examples/noswot.jl +++ b/examples/noswot.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/optcontrol.jl b/examples/optcontrol.jl index 3231dacd162..c20e5e3adfd 100644 --- a/examples/optcontrol.jl +++ b/examples/optcontrol.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/prod.jl b/examples/prod.jl index 9ddfc1f40a8..08895fc6e24 100644 --- a/examples/prod.jl +++ b/examples/prod.jl @@ -1,5 +1,5 @@ ############################################################################# -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/qcp.jl b/examples/qcp.jl index 1942f0d48f1..7bbf658fe65 100644 --- a/examples/qcp.jl +++ b/examples/qcp.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/rosenbrock.jl b/examples/rosenbrock.jl index 6440f9af357..65f54e4b358 100644 --- a/examples/rosenbrock.jl +++ b/examples/rosenbrock.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/simpleheur.jl b/examples/simpleheur.jl index 748442c87ea..ff6a539ff83 100644 --- a/examples/simpleheur.jl +++ b/examples/simpleheur.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/simplelazy.jl b/examples/simplelazy.jl index 80e6160b92f..8c5c95c7427 100644 --- a/examples/simplelazy.jl +++ b/examples/simplelazy.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/simplelazy2.jl b/examples/simplelazy2.jl index ec2ae446fbb..eac776bb902 100644 --- a/examples/simplelazy2.jl +++ b/examples/simplelazy2.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/simpleusercut.jl b/examples/simpleusercut.jl index e473bd1ed79..14c23fb23a9 100644 --- a/examples/simpleusercut.jl +++ b/examples/simpleusercut.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/steelT3.jl b/examples/steelT3.jl index f3f11b2513b..30106b272ec 100644 --- a/examples/steelT3.jl +++ b/examples/steelT3.jl @@ -1,5 +1,5 @@ ################################################################################ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/sudoku.jl b/examples/sudoku.jl index f773298acfb..0940679c77d 100644 --- a/examples/sudoku.jl +++ b/examples/sudoku.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/transp.jl b/examples/transp.jl index 6ece2108039..6a5563e6338 100644 --- a/examples/transp.jl +++ b/examples/transp.jl @@ -1,5 +1,5 @@ ############################################################################# -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/tsp.jl b/examples/tsp.jl index 3f7d27a12c9..a75f08e87c8 100644 --- a/examples/tsp.jl +++ b/examples/tsp.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/examples/urbanplan.jl b/examples/urbanplan.jl index cbc646beccc..843bfcfe5b3 100644 --- a/examples/urbanplan.jl +++ b/examples/urbanplan.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/src/JuMP.jl b/src/JuMP.jl index fbfb1aa73cf..35e0fe6944c 100644 --- a/src/JuMP.jl +++ b/src/JuMP.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/src/JuMPArray.jl b/src/JuMPArray.jl index 29c1c5ab238..c83d87fa9e7 100644 --- a/src/JuMPArray.jl +++ b/src/JuMPArray.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/src/JuMPContainer.jl b/src/JuMPContainer.jl index f3df7e02d65..6982efddef7 100644 --- a/src/JuMPContainer.jl +++ b/src/JuMPContainer.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/src/affexpr.jl b/src/affexpr.jl index 405045634f7..cd558d466cf 100644 --- a/src/affexpr.jl +++ b/src/affexpr.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/src/callbacks.jl b/src/callbacks.jl index fd2a9ae17ca..5b95c911813 100644 --- a/src/callbacks.jl +++ b/src/callbacks.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/src/deprecated.jl b/src/deprecated.jl index 437be793104..426b38d245f 100644 --- a/src/deprecated.jl +++ b/src/deprecated.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/src/macros.jl b/src/macros.jl index f43bd235dd8..0fb5655c372 100644 --- a/src/macros.jl +++ b/src/macros.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/src/nlp.jl b/src/nlp.jl index 516af87511f..d1b761d00dd 100644 --- a/src/nlp.jl +++ b/src/nlp.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/src/norms.jl b/src/norms.jl index 84c8d135a7c..7fdf3bcaef4 100644 --- a/src/norms.jl +++ b/src/norms.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/src/operators.jl b/src/operators.jl index 8d5fa2b4e00..2f6f8953535 100644 --- a/src/operators.jl +++ b/src/operators.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/src/parseExpr_staged.jl b/src/parseExpr_staged.jl index 1b802beb47f..adf963c242a 100644 --- a/src/parseExpr_staged.jl +++ b/src/parseExpr_staged.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/src/parsenlp.jl b/src/parsenlp.jl index a64b4dc9813..b2b9134627b 100644 --- a/src/parsenlp.jl +++ b/src/parsenlp.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/src/precompile.jl b/src/precompile.jl index bc5e439d243..c35d94779f7 100644 --- a/src/precompile.jl +++ b/src/precompile.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/src/print.jl b/src/print.jl index 54a425b6d3f..efa7f135a5b 100644 --- a/src/print.jl +++ b/src/print.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/src/quadexpr.jl b/src/quadexpr.jl index 737b84d2c10..9bbb3e9103f 100644 --- a/src/quadexpr.jl +++ b/src/quadexpr.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/src/solvers.jl b/src/solvers.jl index dbb28ef6a83..b0d9e6c83cf 100644 --- a/src/solvers.jl +++ b/src/solvers.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/src/sos.jl b/src/sos.jl index f6fd7712525..fd9a97ee588 100644 --- a/src/sos.jl +++ b/src/sos.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/src/utils.jl b/src/utils.jl index 2c84386c597..9b4fe04860e 100644 --- a/src/utils.jl +++ b/src/utils.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/src/writers.jl b/src/writers.jl index 4e1f9590ce9..e06b5967dc2 100644 --- a/src/writers.jl +++ b/src/writers.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/callback.jl b/test/callback.jl index 76c2cac76b0..a3c3cf8b3ef 100644 --- a/test/callback.jl +++ b/test/callback.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/expr.jl b/test/expr.jl index ad7591c790d..3af71cdf37a 100644 --- a/test/expr.jl +++ b/test/expr.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/fuzzer.jl b/test/fuzzer.jl index 232afe58ae5..cbd0662415a 100644 --- a/test/fuzzer.jl +++ b/test/fuzzer.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/hockschittkowski/hs109.jl b/test/hockschittkowski/hs109.jl index c4987ef49b2..9d1b528c457 100644 --- a/test/hockschittkowski/hs109.jl +++ b/test/hockschittkowski/hs109.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/hockschittkowski/hs110.jl b/test/hockschittkowski/hs110.jl index bc3f53753e3..d782371aab6 100644 --- a/test/hockschittkowski/hs110.jl +++ b/test/hockschittkowski/hs110.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/hockschittkowski/hs111.jl b/test/hockschittkowski/hs111.jl index 27d8c61c799..01eb0600840 100644 --- a/test/hockschittkowski/hs111.jl +++ b/test/hockschittkowski/hs111.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/hockschittkowski/hs112.jl b/test/hockschittkowski/hs112.jl index 9f7cfd0a975..73f071bf704 100644 --- a/test/hockschittkowski/hs112.jl +++ b/test/hockschittkowski/hs112.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/hockschittkowski/hs114.jl b/test/hockschittkowski/hs114.jl index fcfbccd620f..b124d574b24 100644 --- a/test/hockschittkowski/hs114.jl +++ b/test/hockschittkowski/hs114.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/hockschittkowski/hs116.jl b/test/hockschittkowski/hs116.jl index b4cb956821a..49c785f35ef 100644 --- a/test/hockschittkowski/hs116.jl +++ b/test/hockschittkowski/hs116.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/hockschittkowski/hs118.jl b/test/hockschittkowski/hs118.jl index 3bb8b458c4c..2269d454ea1 100644 --- a/test/hockschittkowski/hs118.jl +++ b/test/hockschittkowski/hs118.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/hockschittkowski/runhs.jl b/test/hockschittkowski/runhs.jl index 2da013d1297..b45542c4c8d 100644 --- a/test/hockschittkowski/runhs.jl +++ b/test/hockschittkowski/runhs.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/hygiene.jl b/test/hygiene.jl index 529579bb19b..523a9f01664 100644 --- a/test/hygiene.jl +++ b/test/hygiene.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/model.jl b/test/model.jl index bac750c2467..9ccd91fa41d 100644 --- a/test/model.jl +++ b/test/model.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/nonlinear.jl b/test/nonlinear.jl index 274c80ba5a6..9ace09a862a 100644 --- a/test/nonlinear.jl +++ b/test/nonlinear.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/operator.jl b/test/operator.jl index 99b37e65b41..b0b259928d8 100644 --- a/test/operator.jl +++ b/test/operator.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/print.jl b/test/print.jl index 5c05ae8a092..4a2cde9d2b8 100644 --- a/test/print.jl +++ b/test/print.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/probmod.jl b/test/probmod.jl index 553423f6c22..089cea5aae6 100644 --- a/test/probmod.jl +++ b/test/probmod.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/qcqpmodel.jl b/test/qcqpmodel.jl index 851a01c6afd..ac2f193004a 100644 --- a/test/qcqpmodel.jl +++ b/test/qcqpmodel.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/runtests.jl b/test/runtests.jl index cc1a7d33c28..783ca61f613 100755 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/solvers.jl b/test/solvers.jl index a2dc485d87a..2b5cd8fa20b 100644 --- a/test/solvers.jl +++ b/test/solvers.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/test/variable.jl b/test/variable.jl index 3e348699b01..1c064328aeb 100644 --- a/test/variable.jl +++ b/test/variable.jl @@ -1,4 +1,4 @@ -# Copyright 2016, Iain Dunning, Joey Huchette, Miles Lubin, and contributors +# Copyright 2017, Iain Dunning, Joey Huchette, Miles Lubin, and contributors # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/.