diff --git a/README.md b/README.md index 6063147f9051b2d1a7c166328682fc26d75cdc8f..396573a79fba76521671866bb25b8d4d4b3aa8d1 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ Such data is direct, thus the TraceDQL block of queries contains only a single q To compute the start time from the execution trace, we can follow the same approach: select the ***currentTime*** from the first capture. For this, we use two ***TraceDQL*** instructions: ***Source*** (***FROM***) with the ***FIRST*** option, and ***Selection*** (***SELECT***). <div align="center"> - <img src="images/start_time_captured.png" alt="Alt text" width="600"> + <img src="images/start_time_captured.png" alt="Alt text" width="800"> </div> The ***TraceDQL*** query is as follows: <div align="center"> @@ -109,7 +109,7 @@ The ***TraceDQL*** query is as follows: Finally, after defining the two fundamental queries needed to compute the simulation duration, we can create a ***TraceDQL*** data block named ***SD*** (***Simulation Duration***), which is calculated by subtracting the result of the ***start_time_captured*** block from the ***last_time_captured*** block. This can be written as follows: <div align="center"> - <img src="images/simulation_duration.png" alt="Alt text" width="400"> + <img src="images/simulation_duration.png" alt="Alt text" width="800"> </div> Note that the ***Source*** instruction is optional in this case. We can simply use the ***Selection*** instruction to retrieve the ***currentTime*** values from the execution trace and then select either the first or the last one. <div align="center"> @@ -117,7 +117,7 @@ Note that the ***Source*** instruction is optional in this case. We can simply u </div> The ***TraceDQL*** query is as follows: <div align="center"> - <img src="images/query_currentTime.png" alt="Alt text" width="400"> + <img src="images/query_currentTime.png" alt="Alt text" width="300"> </div> ### TraceDQL queries to answer Q2