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

Problem in Consts.java #147

Open
alitariqnet opened this issue Feb 21, 2021 · 1 comment
Open

Problem in Consts.java #147

alitariqnet opened this issue Feb 21, 2021 · 1 comment

Comments

@alitariqnet
Copy link

// ================== Time constants ==================
/** One minute time in seconds. /
public static final int MINUTE = 60;
/
* One hour time in seconds. /
public static final int HOUR = 60 * MINUTE;
/
* One day time in seconds. /
public static final int DAY = 24 * HOUR;
/
* One week time in seconds. */
public static final int WEEK = 24 * HOUR;

Above lines are written in Consts.java in Cloudsim 5.0 pre-release
Do you think that the last line should be,
/** One week time in seconds. */
public static final int WEEK = 7 * DAY;
?

@lak-sh-mi
Copy link

lak-sh-mi commented Feb 22, 2021 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants