[Solved] Which is Faster? Evaluate & Execute

Status
Not open for further replies.
.evaluate() and .execute() are syntactic sugar for TriggerEvaluate and TriggerExecute. So at the end of the day, I wouldn't worry about the speed. JassHelper generates some extra code to do the evaluations, but it is usually negligible. If you're curious, you can save your map and check the jassnewgenpack/logs folder and find your outputwar3map.j to see how it's done.

As for evaluate vs. execute, benchmarks from a long time ago showed that evaluate was faster--especially if the trigger uses only conditions and that condition returns false.
 
Status
Not open for further replies.
Top