Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wenqing
ogs
Commits
2c705c33
Commit
2c705c33
authored
3 years ago
by
Tom Fischer
Browse files
Options
Downloads
Patches
Plain Diff
[GL/SensorData] Remove unused constructor.
parent
ea93819b
No related branches found
No related tags found
Loading
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
GeoLib/SensorData.cpp
+0
-10
0 additions, 10 deletions
GeoLib/SensorData.cpp
GeoLib/SensorData.h
+0
-3
0 additions, 3 deletions
GeoLib/SensorData.h
with
0 additions
and
13 deletions
GeoLib/SensorData.cpp
+
0
−
10
View file @
2c705c33
...
@@ -43,16 +43,6 @@ SensorData::SensorData(std::vector<std::size_t> time_steps)
...
@@ -43,16 +43,6 @@ SensorData::SensorData(std::vector<std::size_t> time_steps)
}
}
}
}
SensorData
::
SensorData
(
std
::
size_t
first_timestep
,
std
::
size_t
last_timestep
,
std
::
size_t
step_size
)
:
_start
(
first_timestep
),
_end
(
last_timestep
),
_step_size
(
step_size
),
_time_unit
(
TimeStepType
::
NONE
)
{
}
SensorData
::~
SensorData
()
SensorData
::~
SensorData
()
{
{
for
(
std
::
vector
<
float
>*
vec
:
_data_vecs
)
for
(
std
::
vector
<
float
>*
vec
:
_data_vecs
)
...
...
This diff is collapsed.
Click to expand it.
GeoLib/SensorData.h
+
0
−
3
View file @
2c705c33
...
@@ -67,9 +67,6 @@ public:
...
@@ -67,9 +67,6 @@ public:
/// Constructor using a time step vector valid for all time series that will be added later
/// Constructor using a time step vector valid for all time series that will be added later
explicit
SensorData
(
std
::
vector
<
std
::
size_t
>
time_steps
);
explicit
SensorData
(
std
::
vector
<
std
::
size_t
>
time_steps
);
/// Constructor using time step bounds for all time series that will be added later
SensorData
(
std
::
size_t
first_timestep
,
std
::
size_t
last_timestep
,
std
::
size_t
step_size
);
~
SensorData
();
~
SensorData
();
/// Adds a time series that needs to conform to the time step vector specified in the constructor.
/// Adds a time series that needs to conform to the time step vector specified in the constructor.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment