Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement followSpeed #6

Open
wants to merge 35 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
16558cb
Merge pull request #2 from FTSRG-ReteLab/ReteLab2-flow
tdrabos Mar 2, 2020
18acdeb
MergeConflict A
Qnbie Mar 2, 2020
e679fc2
merge conflict B
Qnbie Mar 2, 2020
5f988bd
Merge pull request #3 from FTSRG-ReteLab/branch-A
tdrabos Mar 2, 2020
0ca8528
Merge branch 'master' into branch-B
tdrabos Mar 2, 2020
522486a
Merge pull request #4 from FTSRG-ReteLab/branch-B
tdrabos Mar 2, 2020
5f27fb0
travis.yml
Qnbie Mar 2, 2020
87be6d1
commit
Qnbie Mar 2, 2020
3b4461b
basic travis settings
Qnbie Mar 2, 2020
828588e
basic travis settings
Qnbie Mar 2, 2020
0e5cc1e
error
Qnbie Mar 2, 2020
8ca9826
tostrign
Qnbie Mar 2, 2020
15089cc
Junite
Qnbie Mar 2, 2020
6dbe582
Junite2
Qnbie Mar 2, 2020
0dad194
Junite2
Qnbie Mar 2, 2020
6395d7d
Junite2
Qnbie Mar 2, 2020
e68835e
Junite2
Qnbie Mar 2, 2020
3dbdc99
Junite2
Qnbie Mar 2, 2020
1c6554d
Junite3
Qnbie Mar 2, 2020
914009e
Junite3
Qnbie Mar 2, 2020
1f551bb
TableTest
Qnbie Mar 2, 2020
ef11d47
TableTest
Qnbie Mar 2, 2020
5fd22ed
TableTest
Qnbie Mar 2, 2020
e185351
TableTest
Qnbie Mar 2, 2020
59f92b2
TableTest
Qnbie Mar 2, 2020
e1fcd5a
TableTest
Qnbie Mar 2, 2020
30c9a1b
Implement followSpeed
Qnbie Mar 23, 2020
8e44691
Implement followSpeed
Qnbie Mar 23, 2020
b47724b
followSpeed Thread add
Qnbie Mar 23, 2020
340fed0
followSpeed Thread add
Qnbie Mar 23, 2020
0f7d2ea
SetUp TestCases
Qnbie Apr 3, 2020
5d65d9c
Issue#7 solved
Qnbie Apr 3, 2020
be74d73
Update Test for full coverage
Qnbie Apr 3, 2020
0aa73f8
large file deleted
Qnbie Apr 3, 2020
8ec875b
Merge branch 'Qnbie-Features' of https://github.com/ftsrg-retelab/QtC…
Qnbie Apr 3, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ public class TrainControllerImpl implements TrainController {
private int referenceSpeed = 0;
private int speedLimit = 0;

public TrainControllerImpl(){
followSpeed();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This function should be called on a new thread

}

@Override
public void followSpeed() {
if (referenceSpeed < 0) {
Expand Down