- File:
-
- 1 edited
-
src/ResolvExpr/AlternativeFinder.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/AlternativeFinder.h
r432ce7a r6f326b1 9 9 // Author : Richard C. Bilson 10 10 // Created On : Sat May 16 23:56:12 2015 11 // Last Modified By : A aron B. Moss12 // Last Modified On : Fri Oct -5 10:01:00 201813 // Update Count : 511 // Last Modified By : Andrew Beach 12 // Last Modified On : Wed Jul 26 11:24:00 2017 13 // Update Count : 4 14 14 // 15 15 … … 24 24 #include "ResolvExpr/Cost.h" // for Cost, Cost::infinity 25 25 #include "ResolvExpr/TypeEnvironment.h" // for AssertionSet, OpenVarSet 26 #include "ResolvMode.h" // for ResolvMode27 26 #include "SynTree/Visitor.h" // for Visitor 28 27 #include "SynTree/SynTree.h" // for Visitor Nodes … … 37 36 /// First index is which argument, second index is which alternative for that argument, 38 37 /// third index is which exploded element of that alternative 39 using ExplodedArgs _old= std::vector< std::vector< ExplodedActual > >;38 using ExplodedArgs = std::vector< std::vector< ExplodedActual > >; 40 39 41 40 class AlternativeFinder { … … 69 68 } 70 69 71 void find( Expression *expr, ResolvMode mode = ResolvMode{});70 void find( Expression *expr, bool adjust = false, bool prune = true, bool failFast = true ); 72 71 /// Calls find with the adjust flag set; adjustment turns array and function types into equivalent pointer types 73 72 void findWithAdjustment( Expression *expr );
Note:
See TracChangeset
for help on using the changeset viewer.