Changeset 39e6309 for doc/theses/colby_parsons_MMAth/text/waituntil.tex
- Timestamp:
- Jul 11, 2023, 9:25:12 AM (16 months ago)
- Branches:
- master
- Children:
- c54ca97
- Parents:
- ea1bb94
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/colby_parsons_MMAth/text/waituntil.tex
rea1bb94 r39e6309 501 501 Another difference between Go and \CFA is the order of clause selection when multiple clauses are available. 502 502 Go "randomly" selects a clause, but \CFA chooses the clause in the order they are listed~\cite{go:select}. 503 This \CFA design decision allows users to set implicit priorities, which can result in more predictable behaviour, and even better performance in certain cases, such as the case shown in Table~\ref{ }.504 If \CFA didn't have priorities, the performance difference in Table~\ref{ } would be less significant since @P1@ and @C1@ would try to compete to operate on @B@ more often with random selection.503 This \CFA design decision allows users to set implicit priorities, which can result in more predictable behaviour, and even better performance in certain cases, such as the case shown in Table~\ref{t:pathGo}. 504 If \CFA didn't have priorities, the performance difference in Table~\ref{t:pathGo} would be less significant since @P1@ and @C1@ would try to compete to operate on @B@ more often with random selection. 505 505 506 506 \subsection{Future Benchmark}
Note: See TracChangeset
for help on using the changeset viewer.