Changeset 29169 for trunk/ippTools/src/difftool.c
- Timestamp:
- Sep 16, 2010, 10:53:58 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/difftool.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/difftool.c
r29134 r29169 1645 1645 PXOPT_COPY_F32(config->args, selectWhere, "-sun_angle_min", "inputRawExp.sun_angle", ">="); 1646 1646 PXOPT_COPY_F32(config->args, selectWhere, "-sun_angle_max", "inputRawExp.sun_angle", "<"); 1647 PXOPT_COPY_STR(config->args, selectWhere, "-comment", "inputRawExp.comment", "LIKE"); 1647 PXOPT_COPY_STR(config->args, selectWhere, "-input_comment", "inputRawExp.comment", "LIKE"); 1648 PXOPT_COPY_STR(config->args, selectWhere, "-template_comment", "templateRawExp.comment", "LIKE"); 1648 1649 1649 1650 // Haversine formula for great circle distance … … 1676 1677 1677 1678 PXOPT_LOOKUP_BOOL(simple, config->args, "-simple", false); 1679 PXOPT_LOOKUP_U64(limit, config->args, "-limit", false, false); 1678 1680 PXOPT_LOOKUP_BOOL(pretend, config->args, "-pretend", false); 1679 1681 … … 1835 1837 long numGood = 0; // Number of good rows added 1836 1838 for (long i = 0; i < results->n; i++) { 1839 if (limit && numGood >= limit) { 1840 break; 1841 } 1837 1842 psMetadata *row = results->data[i]; // Result row from query 1838 1843
Note:
See TracChangeset
for help on using the changeset viewer.
