Skip to content

Commit

Permalink
Merge pull request #480 from arijitnoobstar/master
Browse files Browse the repository at this point in the history
fixed math typo
  • Loading branch information
Feras Saad committed Nov 1, 2022
2 parents bcf3504 + 3a849db commit b959223
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/src/ref/gfi.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,8 @@ and `discard` will be:
Note that the discard contains both the previous values of addresses that were overwritten, and the values for addresses that were in the previous trace but are no longer in the new trace.
The weight (`w`) is computed as:
```math
p(t'; x) = 0.7 × 0.4 × 0.4 × 0.7 = 0.0784\\
p(t; x') = 0.7 × 0.6 × 0.1 × 0.7 = 0.0294\\
p(t; x) = 0.7 × 0.4 × 0.4 × 0.7 = 0.0784\\
p(t'; x') = 0.7 × 0.6 × 0.1 × 0.7 = 0.0294\\
w = \log p(t'; x')/p(t; x) = \log 0.0294/0.0784 = \log 0.375
```

Expand Down Expand Up @@ -269,8 +269,8 @@ Also, `discard` will be:
```
If the former case occurs and `:d` is assigned to `true`, then the weight (`w`) is computed as:
```math
p(t'; x) = 0.7 × 0.4 × 0.4 × 0.7 = 0.0784\\
p(t; x') = 0.7 × 0.6 × 0.1 × 0.7 = 0.0294\\
p(t; x) = 0.7 × 0.4 × 0.4 × 0.7 = 0.0784\\
p(t'; x') = 0.7 × 0.6 × 0.1 × 0.7 = 0.0294\\
q(t'; x', t + u) = 0.1\\
w = \log p(t'; x')/(p(t; x) q(t'; x', t + u)) = \log 0.0294/(0.0784 \cdot 0.1) = \log (3.75)
```
Expand Down

0 comments on commit b959223

Please sign in to comment.