chore: remove a redundant test
cargo devel CI / cargo CI (push) Successful in 8m16s Details

This commit is contained in:
Christoph J. Scherr 2024-07-22 10:53:45 +02:00
parent 107362b682
commit 89ff872ab7
1 changed files with 1 additions and 6 deletions

View File

@ -1,15 +1,10 @@
Feature: inverted square root calculation
Scenario: Calculate fast inverted sqrt
Scenario: fast inverted sqrt is about the same as the regular inverted sqrt
Given a number
When we calculate the inverted square root of it using the fast inverted square root algorithm
Then the result is about the same as if we calculate it normally
Scenario: Calculate regular inverted sqrt
Given a number
When we calculate the inverted square root of it normally
Then the result can be calculated
Scenario: Can the fast inverted sqrt be calculated?
Given a number
When we calculate the inverted square root of it using the fast inverted square root algorithm