Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
magicseteditor
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
magicseteditor
Commits
4953501a
Commit
4953501a
authored
May 31, 2008
by
twanvl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
off by one in mean calculation in Graph
parent
8cf760e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/gui/control/graph.cpp
src/gui/control/graph.cpp
+2
-1
No files found.
src/gui/control/graph.cpp
View file @
4953501a
...
@@ -77,7 +77,7 @@ GraphData::GraphData(const GraphDataPre& d)
...
@@ -77,7 +77,7 @@ GraphData::GraphData(const GraphDataPre& d)
size_t
left
=
counts
.
size
();
size_t
left
=
counts
.
size
();
int
i
=
0
;
int
i
=
0
;
while
(
!
counts
.
empty
()
&&
i
<
100
)
{
while
(
!
counts
.
empty
()
&&
i
<
100
)
{
String
is
=
String
()
<<
i
++
;
String
is
=
String
()
<<
i
;
map
<
String
,
UInt
>::
const_iterator
it
=
counts
.
find
(
is
);
map
<
String
,
UInt
>::
const_iterator
it
=
counts
.
find
(
is
);
if
(
it
==
counts
.
end
())
{
if
(
it
==
counts
.
end
())
{
// not found, add a 0 bar
// not found, add a 0 bar
...
@@ -90,6 +90,7 @@ GraphData::GraphData(const GraphDataPre& d)
...
@@ -90,6 +90,7 @@ GraphData::GraphData(const GraphDataPre& d)
counts
.
erase
(
is
);
counts
.
erase
(
is
);
left
--
;
left
--
;
}
}
i
++
;
}
}
a
->
mean
/=
a
->
total
;
a
->
mean
/=
a
->
total
;
// drop empty tail
// drop empty tail
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment