Consistent execution is a combination between CONCrete and symOLIC for feasibility.
Symbolic execution allows us to execute a program through all possible execution paths, thereby achieving all possible path conditions (path condition = a set of logical constraints that leads us to a certain point of execution). The problem is that, with the exception of trace elements, the cost of executing a program through all possible paths of execution is exponentially high, and therefore prohibitive.
On the other hand, if we provide symbolic execution with specific values, you can lead it through a specific execution path (without going through all of them) and achieve the corresponding path condition. It is possible.
Hope this answers your question.
source share