blob: a165a1bdf60a746477e554e143c9133da746e8a3 [file] [log] [blame]
Sameer Agarwal1fdc5202012-05-12 07:29:10 -07001// Ceres Solver - A fast non-linear least squares minimizer
Keir Mierle7492b0d2015-03-17 22:30:16 -07002// Copyright 2015 Google Inc. All rights reserved.
3// http://ceres-solver.org/
Sameer Agarwal1fdc5202012-05-12 07:29:10 -07004//
5// Redistribution and use in source and binary forms, with or without
6// modification, are permitted provided that the following conditions are met:
7//
8// * Redistributions of source code must retain the above copyright notice,
9// this list of conditions and the following disclaimer.
10// * Redistributions in binary form must reproduce the above copyright notice,
11// this list of conditions and the following disclaimer in the documentation
12// and/or other materials provided with the distribution.
13// * Neither the name of Google Inc. nor the names of its contributors may be
14// used to endorse or promote products derived from this software without
15// specific prior written permission.
16//
17// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27// POSSIBILITY OF SUCH DAMAGE.
28//
29// Author: sameeragarwal@google.com (Sameer Agarwal)
30
31#include "ceres/array_utils.h"
32
Sameer Agarwal041f2752014-05-29 13:50:43 -070033#include <algorithm>
Sameer Agarwal1fdc5202012-05-12 07:29:10 -070034#include <cmath>
35#include <cstddef>
Sameer Agarwal5e8321c2014-01-22 17:23:27 -080036#include <string>
Sameer Agarwal041f2752014-05-29 13:50:43 -070037#include <vector>
Keir Mierle58ede272012-06-24 17:23:57 -070038#include "ceres/fpclassify.h"
Sameer Agarwal5e8321c2014-01-22 17:23:27 -080039#include "ceres/stringprintf.h"
Sameer Agarwal2dd90772017-01-15 15:46:56 -080040#include "ceres/types.h"
Sameer Agarwal1fdc5202012-05-12 07:29:10 -070041namespace ceres {
42namespace internal {
43
Sameer Agarwal05a07ec2015-01-07 15:10:46 -080044using std::string;
45
Sameer Agarwal1fdc5202012-05-12 07:29:10 -070046bool IsArrayValid(const int size, const double* x) {
47 if (x != NULL) {
48 for (int i = 0; i < size; ++i) {
Keir Mierle58ede272012-06-24 17:23:57 -070049 if (!IsFinite(x[i]) || (x[i] == kImpossibleValue)) {
Sameer Agarwal1fdc5202012-05-12 07:29:10 -070050 return false;
51 }
52 }
53 }
54 return true;
55}
56
Sameer Agarwal5e8321c2014-01-22 17:23:27 -080057int FindInvalidValue(const int size, const double* x) {
58 if (x == NULL) {
59 return size;
60 }
61
62 for (int i = 0; i < size; ++i) {
63 if (!IsFinite(x[i]) || (x[i] == kImpossibleValue)) {
64 return i;
65 }
66 }
67
68 return size;
Sameer Agarwalbcc865f2014-12-17 07:35:09 -080069}
Sameer Agarwal5e8321c2014-01-22 17:23:27 -080070
Sameer Agarwal1fdc5202012-05-12 07:29:10 -070071void InvalidateArray(const int size, double* x) {
72 if (x != NULL) {
73 for (int i = 0; i < size; ++i) {
74 x[i] = kImpossibleValue;
75 }
76 }
77}
78
Sameer Agarwal5e8321c2014-01-22 17:23:27 -080079void AppendArrayToString(const int size, const double* x, string* result) {
80 for (int i = 0; i < size; ++i) {
81 if (x == NULL) {
82 StringAppendF(result, "Not Computed ");
83 } else {
84 if (x[i] == kImpossibleValue) {
85 StringAppendF(result, "Uninitialized ");
86 } else {
87 StringAppendF(result, "%12g ", x[i]);
88 }
89 }
90 }
91}
92
Sameer Agarwal041f2752014-05-29 13:50:43 -070093void MapValuesToContiguousRange(const int size, int* array) {
94 std::vector<int> unique_values(array, array + size);
95 std::sort(unique_values.begin(), unique_values.end());
96 unique_values.erase(std::unique(unique_values.begin(),
97 unique_values.end()),
98 unique_values.end());
99
100 for (int i = 0; i < size; ++i) {
101 array[i] = std::lower_bound(unique_values.begin(),
102 unique_values.end(),
103 array[i]) - unique_values.begin();
104 }
105}
106
Sameer Agarwal1fdc5202012-05-12 07:29:10 -0700107} // namespace internal
108} // namespace ceres