Deleted User 07v456ee0
Deleted User 07v456ee0
CC#
Created by Deleted User 07v456ee0 on 6/11/2023 in #help
Stopwatch not giving accurate times
thanks for the help 👍
40 replies
CC#
Created by Deleted User 07v456ee0 on 6/11/2023 in #help
Stopwatch not giving accurate times
turns out it was genItems lol, a small change I made made it take a lot longer
40 replies
CC#
Created by Deleted User 07v456ee0 on 6/11/2023 in #help
Stopwatch not giving accurate times
im gonna try moving the timestamp
40 replies
CC#
Created by Deleted User 07v456ee0 on 6/11/2023 in #help
Stopwatch not giving accurate times
i tried it on 30k and counted the seconds, it was 3, and the code gave out 0.0278 ms
40 replies
CC#
Created by Deleted User 07v456ee0 on 6/11/2023 in #help
Stopwatch not giving accurate times
thanks
40 replies
CC#
Created by Deleted User 07v456ee0 on 6/11/2023 in #help
Stopwatch not giving accurate times
okay ill take a look
40 replies
CC#
Created by Deleted User 07v456ee0 on 6/11/2023 in #help
Stopwatch not giving accurate times
its just a simple for loop
40 replies
CC#
Created by Deleted User 07v456ee0 on 6/11/2023 in #help
Stopwatch not giving accurate times
static int LinearSearch(item[] array, int target)
{
for (int i = 0; i < array.Length; i++)
{
if (array[i].quantity == target)
{
return i;
}
}
return -1;
}
static int LinearSearch(item[] array, int target)
{
for (int i = 0; i < array.Length; i++)
{
if (array[i].quantity == target)
{
return i;
}
}
return -1;
}
40 replies
CC#
Created by Deleted User 07v456ee0 on 6/11/2023 in #help
Stopwatch not giving accurate times
and doing it manually is not possible beacause with a small number of items (less than 1000 for example) its almost instant
40 replies
CC#
Created by Deleted User 07v456ee0 on 6/11/2023 in #help
Stopwatch not giving accurate times
what should I use instead because I need to measure the amount of time it takes for some data collection
40 replies
CC#
Created by Deleted User 07v456ee0 on 6/11/2023 in #help
Stopwatch not giving accurate times
i was using one lol but i had the same issue so I tried this and it didn't work either
40 replies
CC#
Created by Deleted User 07v456ee0 on 6/11/2023 in #help
Stopwatch not giving accurate times
im measuring linear search here, and even if i wasn't genItems doesn't take long (i know this from before manual timing)
40 replies
CC#
Created by Deleted User 07v456ee0 on 6/11/2023 in #help
Stopwatch not giving accurate times
im just using the Stopwatch from system.diagnostics
40 replies
CC#
Created by Deleted User 07v456ee0 on 6/11/2023 in #help
Stopwatch not giving accurate times
40 replies