Changeset 1959 for trunk/autoquest-core-usability/src/main/java/de/ugoe
- Timestamp:
- 06/02/15 13:17:23 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-core-usability/src/main/java/de/ugoe/cs/autoquest/usability/CommonTaskRateRule.java
r1918 r1959 61 61 UsabilityEvaluationResult results) 62 62 { 63 // the mean should tend to 0.1 (all subsequent 10 actions are covered by the same task). 63 // the mean indicates how many different root nodes 10 subsequent actions have. 64 // The mean should tend to 0.1 (all subsequent 10 actions are covered by the same root task). 64 65 // The ratio must be similar, i.e., if the mean is 0.1 the ratio is 0, if the mean is 1.0 65 66 // the ratio is 1000 … … 91 92 final List<IEventTaskInstance> leafNodes = new ArrayList<>(); 92 93 94 // determine for always 10 subsequent actions the root tasks performed for them. 95 // then determine, the ratio of different root tasks to 10. 93 96 for (IUserSession session : sessions) { 94 97 rootNodes.clear();
Note: See TracChangeset
for help on using the changeset viewer.