Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
FIC_DK_P GA Solving
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
6
Issues
6
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
M3TAL
FIC_DK_P GA Solving
Commits
bde45bae
Commit
bde45bae
authored
4 years ago
by
Alexis Lebis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changed the decay function
parent
571917f4
master
data_export
new_evaluator
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
decay.h
src/model/decay.h
+3
-2
No files found.
src/model/decay.h
View file @
bde45bae
...
...
@@ -18,8 +18,9 @@ class DecayEngine
return
0
;
if
(
t
==
0
)
return
0
;
return
(
exp
(
t
/
1
.
25
)
+
5
)
/
100
;
//return (double)t/10;
// seems to be quitte similar to ebbinghaus : r = e^{-t/s} with s memory stability and t time
//return (exp(t / 1.25) + 5)/100;
return
(
exp
(
t
/
2
.
125
)
+
10
)
/
100
;
}
};
...
...
This diff is collapsed.
Click to expand it.
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