[sdpb] 125/233: Fixed a couple typos so everything compiles again; extended license year to 2015

Tobias Hansen thansen at moszumanska.debian.org
Thu Mar 9 04:06:28 UTC 2017


This is an automated email from the git hooks/post-receive script.

thansen pushed a commit to branch master
in repository sdpb.

commit efb9d773c51f699a02a7e573de04852fb8707a1f
Author: David Simmons-Duffin <dsd at athena.sns.ias.edu>
Date:   Fri Jan 9 19:37:42 2015 -0500

    Fixed a couple typos so everything compiles again; extended license year to 2015
---
 LICENSE                     | 2 +-
 src/BlockDiagonalMatrix.cpp | 2 +-
 src/BlockDiagonalMatrix.h   | 2 +-
 src/Matrix.cpp              | 2 +-
 src/Matrix.h                | 2 +-
 src/Polynomial.h            | 2 +-
 src/SDP.cpp                 | 6 +++---
 src/SDP.h                   | 2 +-
 src/SDPSolver.cpp           | 2 +-
 src/SDPSolver.h             | 4 ++--
 src/SDPSolverIO.cpp         | 2 +-
 src/Timers.h                | 2 +-
 src/Vector.h                | 2 +-
 src/main.cpp                | 2 +-
 src/parse.cpp               | 2 +-
 src/parse.h                 | 2 +-
 src/serialize.h             | 2 +-
 src/types.h                 | 2 +-
 src/util.h                  | 2 +-
 19 files changed, 22 insertions(+), 22 deletions(-)

diff --git a/LICENSE b/LICENSE
index 5bb6791..7ceebe5 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
 The MIT License (MIT)
 
-Copyright (c) 2014 David Simmons-Duffin
+Copyright (c) 2014-2015 David Simmons-Duffin
 
 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/src/BlockDiagonalMatrix.cpp b/src/BlockDiagonalMatrix.cpp
index 5a7e978..7ee9dbb 100644
--- a/src/BlockDiagonalMatrix.cpp
+++ b/src/BlockDiagonalMatrix.cpp
@@ -1,5 +1,5 @@
 //=======================================================================
-// Copyright 2014 David Simmons-Duffin.
+// Copyright 2014-2015 David Simmons-Duffin.
 // Distributed under the MIT License.
 // (See accompanying file LICENSE or copy at
 //  http://opensource.org/licenses/MIT)
diff --git a/src/BlockDiagonalMatrix.h b/src/BlockDiagonalMatrix.h
index b8a45a1..f11eb9b 100644
--- a/src/BlockDiagonalMatrix.h
+++ b/src/BlockDiagonalMatrix.h
@@ -1,5 +1,5 @@
 //=======================================================================
-// Copyright 2014 David Simmons-Duffin.
+// Copyright 2014-2015 David Simmons-Duffin.
 // Distributed under the MIT License.
 // (See accompanying file LICENSE or copy at
 //  http://opensource.org/licenses/MIT)
diff --git a/src/Matrix.cpp b/src/Matrix.cpp
index 713486a..bbdd510 100644
--- a/src/Matrix.cpp
+++ b/src/Matrix.cpp
@@ -1,5 +1,5 @@
 //=======================================================================
-// Copyright 2014 David Simmons-Duffin.
+// Copyright 2014-2015 David Simmons-Duffin.
 // Distributed under the MIT License.
 // (See accompanying file LICENSE or copy at
 //  http://opensource.org/licenses/MIT)
diff --git a/src/Matrix.h b/src/Matrix.h
index f61b7bb..68c5a7b 100644
--- a/src/Matrix.h
+++ b/src/Matrix.h
@@ -1,5 +1,5 @@
 //=======================================================================
-// Copyright 2014 David Simmons-Duffin.
+// Copyright 2014-2015 David Simmons-Duffin.
 // Distributed under the MIT License.
 // (See accompanying file LICENSE or copy at
 //  http://opensource.org/licenses/MIT)
diff --git a/src/Polynomial.h b/src/Polynomial.h
index f2d9b78..8f2cf09 100644
--- a/src/Polynomial.h
+++ b/src/Polynomial.h
@@ -1,5 +1,5 @@
 //=======================================================================
-// Copyright 2014 David Simmons-Duffin.
+// Copyright 2014-2015 David Simmons-Duffin.
 // Distributed under the MIT License.
 // (See accompanying file LICENSE or copy at
 //  http://opensource.org/licenses/MIT)
diff --git a/src/SDP.cpp b/src/SDP.cpp
index 81b53df..54dd7d4 100644
--- a/src/SDP.cpp
+++ b/src/SDP.cpp
@@ -1,5 +1,5 @@
 //=======================================================================
-// Copyright 2014 David Simmons-Duffin.
+// Copyright 2014-2015 David Simmons-Duffin.
 // Distributed under the MIT License.
 // (See accompanying file LICENSE or copy at
 //  http://opensource.org/licenses/MIT)
@@ -88,8 +88,8 @@ SDP sdpFromDualConstraintGroups(const Vector &objective,
     sdp.dimensions.push_back(g->dim);
     sdp.degrees.push_back(g->degree);
     sdp.primalObjective.insert(sdp.primalObjective.end(),
-                               s->constraintConstants.begin(),
-                               s->constraintConstants.end());
+                               g->constraintConstants.begin(),
+                               g->constraintConstants.end());
   }
   sdp.FreeVarMatrix = Matrix(sdp.primalObjective.size(), sdp.dualObjective.size());
 
diff --git a/src/SDP.h b/src/SDP.h
index 47f6189..70637b1 100644
--- a/src/SDP.h
+++ b/src/SDP.h
@@ -1,5 +1,5 @@
 //=======================================================================
-// Copyright 2014 David Simmons-Duffin.
+// Copyright 2014-2015 David Simmons-Duffin.
 // Distributed under the MIT License.
 // (See accompanying file LICENSE or copy at
 //  http://opensource.org/licenses/MIT)
diff --git a/src/SDPSolver.cpp b/src/SDPSolver.cpp
index 540c981..7742c29 100644
--- a/src/SDPSolver.cpp
+++ b/src/SDPSolver.cpp
@@ -1,5 +1,5 @@
 //=======================================================================
-// Copyright 2014 David Simmons-Duffin.
+// Copyright 2014-2015 David Simmons-Duffin.
 // Distributed under the MIT License.
 // (See accompanying file LICENSE or copy at
 //  http://opensource.org/licenses/MIT)
diff --git a/src/SDPSolver.h b/src/SDPSolver.h
index e9e0979..222d911 100644
--- a/src/SDPSolver.h
+++ b/src/SDPSolver.h
@@ -1,5 +1,5 @@
 //=======================================================================
-// Copyright 2014 David Simmons-Duffin.
+// Copyright 2014-2015 David Simmons-Duffin.
 // Distributed under the MIT License.
 // (See accompanying file LICENSE or copy at
 //  http://opensource.org/licenses/MIT)
@@ -310,7 +310,7 @@ public:
                       Real mu,
                       Real primalStepLength,
                       Real dualStepLength,
-                      Real betaCorrector)
+                      Real betaCorrector);
 
  private:
   // Compute data needed to solve the Schur complement equation
diff --git a/src/SDPSolverIO.cpp b/src/SDPSolverIO.cpp
index 92b7eb9..18d125b 100644
--- a/src/SDPSolverIO.cpp
+++ b/src/SDPSolverIO.cpp
@@ -1,5 +1,5 @@
 //=======================================================================
-// Copyright 2014 David Simmons-Duffin.
+// Copyright 2014-2015 David Simmons-Duffin.
 // Distributed under the MIT License.
 // (See accompanying file LICENSE or copy at
 //  http://opensource.org/licenses/MIT)
diff --git a/src/Timers.h b/src/Timers.h
index 2817774..d8d517d 100644
--- a/src/Timers.h
+++ b/src/Timers.h
@@ -1,5 +1,5 @@
 //=======================================================================
-// Copyright 2014 David Simmons-Duffin.
+// Copyright 2014-2015 David Simmons-Duffin.
 // Distributed under the MIT License.
 // (See accompanying file LICENSE or copy at
 //  http://opensource.org/licenses/MIT)
diff --git a/src/Vector.h b/src/Vector.h
index 77eba24..c3ed2fe 100644
--- a/src/Vector.h
+++ b/src/Vector.h
@@ -1,5 +1,5 @@
 //=======================================================================
-// Copyright 2014 David Simmons-Duffin.
+// Copyright 2014-2015 David Simmons-Duffin.
 // Distributed under the MIT License.
 // (See accompanying file LICENSE or copy at
 //  http://opensource.org/licenses/MIT)
diff --git a/src/main.cpp b/src/main.cpp
index ca3698f..a11b3e7 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1,5 +1,5 @@
 //=======================================================================
-// Copyright 2014 David Simmons-Duffin.
+// Copyright 2014-2015 David Simmons-Duffin.
 // Distributed under the MIT License.
 // (See accompanying file LICENSE or copy at
 //  http://opensource.org/licenses/MIT)
diff --git a/src/parse.cpp b/src/parse.cpp
index 692aa84..c6df5b6 100644
--- a/src/parse.cpp
+++ b/src/parse.cpp
@@ -1,5 +1,5 @@
 //=======================================================================
-// Copyright 2014 David Simmons-Duffin.
+// Copyright 2014-2015 David Simmons-Duffin.
 // Distributed under the MIT License.
 // (See accompanying file LICENSE or copy at
 //  http://opensource.org/licenses/MIT)
diff --git a/src/parse.h b/src/parse.h
index 771b05e..4d79b8a 100644
--- a/src/parse.h
+++ b/src/parse.h
@@ -1,5 +1,5 @@
 //=======================================================================
-// Copyright 2014 David Simmons-Duffin.
+// Copyright 2014-2015 David Simmons-Duffin.
 // Distributed under the MIT License.
 // (See accompanying file LICENSE or copy at
 //  http://opensource.org/licenses/MIT)
diff --git a/src/serialize.h b/src/serialize.h
index 5f5708c..28bad13 100644
--- a/src/serialize.h
+++ b/src/serialize.h
@@ -1,5 +1,5 @@
 //=======================================================================
-// Copyright 2014 David Simmons-Duffin.
+// Copyright 2014-2015 David Simmons-Duffin.
 // Distributed under the MIT License.
 // (See accompanying file LICENSE or copy at
 //  http://opensource.org/licenses/MIT)
diff --git a/src/types.h b/src/types.h
index e84fb3d..fb26ee5 100644
--- a/src/types.h
+++ b/src/types.h
@@ -1,5 +1,5 @@
 //=======================================================================
-// Copyright 2014 David Simmons-Duffin.
+// Copyright 2014-2015 David Simmons-Duffin.
 // Distributed under the MIT License.
 // (See accompanying file LICENSE or copy at
 //  http://opensource.org/licenses/MIT)
diff --git a/src/util.h b/src/util.h
index a1d487b..0043faf 100644
--- a/src/util.h
+++ b/src/util.h
@@ -1,5 +1,5 @@
 //=======================================================================
-// Copyright 2014 David Simmons-Duffin.
+// Copyright 2014-2015 David Simmons-Duffin.
 // Distributed under the MIT License.
 // (See accompanying file LICENSE or copy at
 //  http://opensource.org/licenses/MIT)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/sdpb.git



More information about the debian-science-commits mailing list