Welcome,
Guest
. Please
login
or
register
. Did you miss your
activation email?
French forum
Home
Help
Search
Login
Register
SFML community forums
»
Help
»
System
»
Big O of sf::Clock::restart()
Print
Pages: [
1
]
Author
Topic: Big O of sf::Clock::restart() (Read 4713 times)
0 Members and 1 Guest are viewing this topic.
xanderxylona
Newbie
Posts: 2
Big O of sf::Clock::restart()
«
on:
April 18, 2019, 05:48:31 pm »
How fast is sf::Clock::restart()? That is to say, what is O(n) where n is the amount of times restart() is called? I am predisposed to assume that all ∆ time incurrence is linearithmic, but I'm not sure this is true for SFML.
Logged
eXpl0it3r
SFML Team
Hero Member
Posts: 11030
Re: Big O of sf::Clock::restart()
«
Reply #1 on:
April 18, 2019, 06:41:05 pm »
Are you sure you understand what Big O notation means?
Instead of using random technical terms, maybe just ask the question you're trying to solve.
When n is the amount of times you call restart() then you don't have to look at SFML's code, but your own to figure out how often you do call restart().
Logged
Official FAQ:
https://www.sfml-dev.org/faq.php
Official Discord Server:
https://discord.gg/nr4X7Fh
——————————————————————
Dev Blog:
https://duerrenberger.dev/blog/
Print
Pages: [
1
]
SFML community forums
»
Help
»
System
»
Big O of sf::Clock::restart()
anything