Skip to content

Commit 6f408fe

Browse files
committed
Remove local changes
1 parent 02784de commit 6f408fe

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

gtsam/linear/linear.i

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ virtual class Huber: gtsam::noiseModel::mEstimator::Base {
127127
};
128128

129129
virtual class Cauchy: gtsam::noiseModel::mEstimator::Base {
130+
Cauchy(double k);
130131
Cauchy(double k, gtsam::noiseModel::mEstimator::Base::ReweightScheme reweight);
131132
static gtsam::noiseModel::mEstimator::Cauchy* Create(double k);
132133

@@ -138,6 +139,7 @@ virtual class Cauchy: gtsam::noiseModel::mEstimator::Base {
138139
};
139140

140141
virtual class Tukey: gtsam::noiseModel::mEstimator::Base {
142+
Tukey(double k);
141143
Tukey(double k, gtsam::noiseModel::mEstimator::Base::ReweightScheme reweight);
142144
static gtsam::noiseModel::mEstimator::Tukey* Create(double k);
143145

@@ -149,6 +151,7 @@ virtual class Tukey: gtsam::noiseModel::mEstimator::Base {
149151
};
150152

151153
virtual class Welsch: gtsam::noiseModel::mEstimator::Base {
154+
Welsch(double k);
152155
Welsch(double k, gtsam::noiseModel::mEstimator::Base::ReweightScheme reweight);
153156
static gtsam::noiseModel::mEstimator::Welsch* Create(double k);
154157

@@ -160,6 +163,7 @@ virtual class Welsch: gtsam::noiseModel::mEstimator::Base {
160163
};
161164

162165
virtual class GemanMcClure: gtsam::noiseModel::mEstimator::Base {
166+
GemanMcClure(double c);
163167
GemanMcClure(double c, gtsam::noiseModel::mEstimator::Base::ReweightScheme reweight);
164168
static gtsam::noiseModel::mEstimator::GemanMcClure* Create(double c);
165169

@@ -171,6 +175,7 @@ virtual class GemanMcClure: gtsam::noiseModel::mEstimator::Base {
171175
};
172176

173177
virtual class DCS: gtsam::noiseModel::mEstimator::Base {
178+
DCS(double c);
174179
DCS(double c, gtsam::noiseModel::mEstimator::Base::ReweightScheme reweight);
175180
static gtsam::noiseModel::mEstimator::DCS* Create(double c);
176181

@@ -182,6 +187,7 @@ virtual class DCS: gtsam::noiseModel::mEstimator::Base {
182187
};
183188

184189
virtual class L2WithDeadZone: gtsam::noiseModel::mEstimator::Base {
190+
L2WithDeadZone(double k);
185191
L2WithDeadZone(double k, gtsam::noiseModel::mEstimator::Base::ReweightScheme reweight);
186192
static gtsam::noiseModel::mEstimator::L2WithDeadZone* Create(double k);
187193

@@ -193,6 +199,7 @@ virtual class L2WithDeadZone: gtsam::noiseModel::mEstimator::Base {
193199
};
194200

195201
virtual class AsymmetricTukey: gtsam::noiseModel::mEstimator::Base {
202+
AsymmetricTukey(double k);
196203
AsymmetricTukey(double k, gtsam::noiseModel::mEstimator::Base::ReweightScheme reweight);
197204
static gtsam::noiseModel::mEstimator::AsymmetricTukey* Create(double k);
198205

@@ -204,6 +211,7 @@ virtual class AsymmetricTukey: gtsam::noiseModel::mEstimator::Base {
204211
};
205212

206213
virtual class AsymmetricCauchy: gtsam::noiseModel::mEstimator::Base {
214+
AsymmetricCauchy(double k);
207215
AsymmetricCauchy(double k, gtsam::noiseModel::mEstimator::Base::ReweightScheme reweight);
208216
static gtsam::noiseModel::mEstimator::AsymmetricCauchy* Create(double k);
209217

@@ -214,17 +222,6 @@ virtual class AsymmetricCauchy: gtsam::noiseModel::mEstimator::Base {
214222
double loss(double error) const;
215223
};
216224

217-
virtual class TwoSidedHuberCauchy: gtsam::noiseModel::mEstimator::Base {
218-
TwoSidedHuberCauchy(double k, double k_huber, gtsam::noiseModel::mEstimator::Base::ReweightScheme reweight);
219-
static gtsam::noiseModel::mEstimator::TwoSidedHuberCauchy* Create(double k);
220-
221-
// enabling serialization functionality
222-
void serializable() const;
223-
224-
double weight(double error) const;
225-
double loss(double error) const;
226-
};
227-
228225
virtual class Custom: gtsam::noiseModel::mEstimator::Base {
229226
Custom(gtsam::noiseModel::mEstimator::CustomWeightFunction weight,
230227
gtsam::noiseModel::mEstimator::CustomLossFunction loss,

0 commit comments

Comments
 (0)