这个提交包含在:
Bensouda Idriss 2023-03-22 10:09:13 +01:00
父节点 1bac558e24
当前提交 c73b5118a4
共有 2 个文件被更改,包括 1 次插入1 次删除

查看文件

@ -228,7 +228,7 @@ public class Path {
*
*/
public double getTravelTime(double speed) {
return speed*3600/(getLength()*1000);
return speed/(getLength()*3.6);
}
/**