/ tests / math_extension_fields / t_fp6_bw6_761.nim
t_fp6_bw6_761.nim
 1  # Constantine
 2  # Copyright (c) 2018-2019    Status Research & Development GmbH
 3  # Copyright (c) 2020-Present Mamy André-Ratsimbazafy
 4  # Licensed and distributed under either of
 5  #   * MIT license (license terms in the root directory or at http://opensource.org/licenses/MIT).
 6  #   * Apache v2 license (license terms in the root directory or at http://www.apache.org/licenses/LICENSE-2.0).
 7  # at your option. This file may not be copied, modified, or distributed except according to those terms.
 8  
 9  import
10    # Internals
11    ../../constantine/math/extension_fields,
12    ../../constantine/math/config/curves,
13    # Test utilities
14    ./t_fp_tower_template
15  
16  const TestCurves = [
17      BW6_761,
18    ]
19  
20  runTowerTests(
21    ExtDegree = 6,
22    Iters = 12,
23    TestCurves = TestCurves,
24    moduleName = "test_fp6_" & $BW6_761,
25    testSuiteDesc = "𝔽p6 = 𝔽p2[v] " & $BW6_761
26  )