From 0af339f13769794a77a29d7903c5f19de33252c8 Mon Sep 17 00:00:00 2001 From: Dimitri Alston <123396563+DimitriAlston@users.noreply.github.com> Date: Thu, 19 Feb 2026 19:54:34 -0500 Subject: [PATCH] Update license --- LICENSE.md | 3 ++- Project.toml | 2 +- benchmark/benchmarks.jl | 5 +++-- src/McCormick.jl | 5 +++-- src/forward_operators/activation_functions.jl | 5 +++-- src/forward_operators/arithmetic.jl | 5 +++-- src/forward_operators/comparison.jl | 5 +++-- src/forward_operators/concave_increasing.jl | 5 +++-- src/forward_operators/convex_increasing.jl | 5 +++-- src/forward_operators/division.jl | 5 +++-- src/forward_operators/extrema.jl | 5 +++-- src/forward_operators/mixed_convexity.jl | 5 +++-- src/forward_operators/multiplication.jl | 5 +++-- src/forward_operators/no_gradient/activation_functions.jl | 5 +++-- src/forward_operators/no_gradient/arithmetic.jl | 5 +++-- src/forward_operators/no_gradient/comparison.jl | 5 +++-- src/forward_operators/no_gradient/convex_increasing.jl | 5 +++-- src/forward_operators/no_gradient/division.jl | 5 +++-- src/forward_operators/no_gradient/multiplication.jl | 5 +++-- src/forward_operators/no_gradient/other.jl | 5 +++-- src/forward_operators/other.jl | 5 +++-- src/forward_operators/power.jl | 5 +++-- src/forward_operators/set_bounds.jl | 5 +++-- src/forward_operators/trilinear.jl | 5 +++-- src/implicit_routines/contract.jl | 5 +++-- src/implicit_routines/implicit.jl | 5 +++-- src/implicit_routines/preconditioner/dense.jl | 5 +++-- 27 files changed, 78 insertions(+), 52 deletions(-) diff --git a/LICENSE.md b/LICENSE.md index 4c93944..53b398a 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,7 @@ MIT License -Copyright (c) 2023 Matthew Wilhelm and Matthew Stuber +Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +Matthew Stuber, and the University of Connecticut (UConn) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Project.toml b/Project.toml index 6078f3c..3172dde 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "McCormick" uuid = "53c679d3-6890-5091-8386-c291e8c8aaa1" -authors = ["Matthew Wilhelm "] +authors = ["Matthew Wilhelm , Robert Gottlieb , Dimitri Alston , and Matthew Stuber "] version = "0.14.0" [deps] diff --git a/benchmark/benchmarks.jl b/benchmark/benchmarks.jl index 4c61278..fc17946 100644 --- a/benchmark/benchmarks.jl +++ b/benchmark/benchmarks.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # benchmark/benchmarks.jl diff --git a/src/McCormick.jl b/src/McCormick.jl index d27ee82..f10a2f0 100644 --- a/src/McCormick.jl +++ b/src/McCormick.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/McCormick.jl diff --git a/src/forward_operators/activation_functions.jl b/src/forward_operators/activation_functions.jl index aad7df5..79a0738 100644 --- a/src/forward_operators/activation_functions.jl +++ b/src/forward_operators/activation_functions.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/forward_operators/concave_increasing.jl diff --git a/src/forward_operators/arithmetic.jl b/src/forward_operators/arithmetic.jl index 5456b6a..c6e223a 100644 --- a/src/forward_operators/arithmetic.jl +++ b/src/forward_operators/arithmetic.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/forward_operators/arithmetic.jl diff --git a/src/forward_operators/comparison.jl b/src/forward_operators/comparison.jl index b90a97c..9c39c19 100644 --- a/src/forward_operators/comparison.jl +++ b/src/forward_operators/comparison.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/forward_operators/comparison.jl diff --git a/src/forward_operators/concave_increasing.jl b/src/forward_operators/concave_increasing.jl index b16f472..d7eacb4 100644 --- a/src/forward_operators/concave_increasing.jl +++ b/src/forward_operators/concave_increasing.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/forward_operators/concave_increasing.jl diff --git a/src/forward_operators/convex_increasing.jl b/src/forward_operators/convex_increasing.jl index 8ba077d..2822436 100644 --- a/src/forward_operators/convex_increasing.jl +++ b/src/forward_operators/convex_increasing.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/forward_operators/convex_increasing.jl diff --git a/src/forward_operators/division.jl b/src/forward_operators/division.jl index 771b947..df93616 100644 --- a/src/forward_operators/division.jl +++ b/src/forward_operators/division.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/forward_operators/division.jl diff --git a/src/forward_operators/extrema.jl b/src/forward_operators/extrema.jl index 3156272..47a91be 100644 --- a/src/forward_operators/extrema.jl +++ b/src/forward_operators/extrema.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/forward_operators/extrema.jl diff --git a/src/forward_operators/mixed_convexity.jl b/src/forward_operators/mixed_convexity.jl index 25a81bb..162441b 100644 --- a/src/forward_operators/mixed_convexity.jl +++ b/src/forward_operators/mixed_convexity.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/forward_operators/mixed_convexity.jl diff --git a/src/forward_operators/multiplication.jl b/src/forward_operators/multiplication.jl index 6b33207..04c109f 100644 --- a/src/forward_operators/multiplication.jl +++ b/src/forward_operators/multiplication.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/forward_operators/multiplication.jl diff --git a/src/forward_operators/no_gradient/activation_functions.jl b/src/forward_operators/no_gradient/activation_functions.jl index a4e98be..4147476 100644 --- a/src/forward_operators/no_gradient/activation_functions.jl +++ b/src/forward_operators/no_gradient/activation_functions.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/forward_operators/concave_increasing.jl diff --git a/src/forward_operators/no_gradient/arithmetic.jl b/src/forward_operators/no_gradient/arithmetic.jl index 5560ec4..f838da1 100644 --- a/src/forward_operators/no_gradient/arithmetic.jl +++ b/src/forward_operators/no_gradient/arithmetic.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/forward_operators/no_gradient/arithmetic.jl diff --git a/src/forward_operators/no_gradient/comparison.jl b/src/forward_operators/no_gradient/comparison.jl index 5599d2c..52ff590 100644 --- a/src/forward_operators/no_gradient/comparison.jl +++ b/src/forward_operators/no_gradient/comparison.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/forward_operators/comparison.jl diff --git a/src/forward_operators/no_gradient/convex_increasing.jl b/src/forward_operators/no_gradient/convex_increasing.jl index 862d718..7aedfda 100644 --- a/src/forward_operators/no_gradient/convex_increasing.jl +++ b/src/forward_operators/no_gradient/convex_increasing.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/forward_operators/convex_increasing.jl diff --git a/src/forward_operators/no_gradient/division.jl b/src/forward_operators/no_gradient/division.jl index 3be0a89..0926f3e 100644 --- a/src/forward_operators/no_gradient/division.jl +++ b/src/forward_operators/no_gradient/division.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/forward_operators/division.jl diff --git a/src/forward_operators/no_gradient/multiplication.jl b/src/forward_operators/no_gradient/multiplication.jl index b5e892d..802674a 100644 --- a/src/forward_operators/no_gradient/multiplication.jl +++ b/src/forward_operators/no_gradient/multiplication.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/forward_operators/multiplication.jl diff --git a/src/forward_operators/no_gradient/other.jl b/src/forward_operators/no_gradient/other.jl index f5a90c3..b904aa9 100644 --- a/src/forward_operators/no_gradient/other.jl +++ b/src/forward_operators/no_gradient/other.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/forward_operators/other.jl diff --git a/src/forward_operators/other.jl b/src/forward_operators/other.jl index 09a0c37..b795409 100644 --- a/src/forward_operators/other.jl +++ b/src/forward_operators/other.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/forward_operators/other.jl diff --git a/src/forward_operators/power.jl b/src/forward_operators/power.jl index bce824c..8f32be0 100644 --- a/src/forward_operators/power.jl +++ b/src/forward_operators/power.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/forward_operators/power.jl diff --git a/src/forward_operators/set_bounds.jl b/src/forward_operators/set_bounds.jl index 4480db4..e6cf886 100644 --- a/src/forward_operators/set_bounds.jl +++ b/src/forward_operators/set_bounds.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/forward_operators/concave_increasing.jl diff --git a/src/forward_operators/trilinear.jl b/src/forward_operators/trilinear.jl index 5956b90..78812af 100644 --- a/src/forward_operators/trilinear.jl +++ b/src/forward_operators/trilinear.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/forward_operators/trilinear.jl diff --git a/src/implicit_routines/contract.jl b/src/implicit_routines/contract.jl index a9b7b33..f7b6b14 100644 --- a/src/implicit_routines/contract.jl +++ b/src/implicit_routines/contract.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/implicit_routines/contact.jl diff --git a/src/implicit_routines/implicit.jl b/src/implicit_routines/implicit.jl index 4fb5fd2..a8ba76d 100644 --- a/src/implicit_routines/implicit.jl +++ b/src/implicit_routines/implicit.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/implicit_routines/implicit.jl diff --git a/src/implicit_routines/preconditioner/dense.jl b/src/implicit_routines/preconditioner/dense.jl index f373e53..7a5c1bd 100644 --- a/src/implicit_routines/preconditioner/dense.jl +++ b/src/implicit_routines/preconditioner/dense.jl @@ -1,8 +1,9 @@ -# Copyright (c) 2018: Matthew Wilhelm & Matthew Stuber. +# Copyright (c) 2018 Matthew Wilhelm, Robert Gottlieb, Dimitri Alston, +# Matthew Stuber, and the University of Connecticut (UConn) # This code is licensed under MIT license (see LICENSE.md for full details) ############################################################################# # McCormick.jl -# A McCormick operator library in Julia +# A forward McCormick operator library # See https://github.com/PSORLab/McCormick.jl ############################################################################# # src/implicit_routines/preconditioner/dense.jl