Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 8800
1
r"""
2
"""
3
#*****************************************************************************
4
# Copyright (C) 2016 Paul Leopardi [email protected]
5
#
6
# Distributed under the terms of the GNU General Public License (GPL)
7
# as published by the Free Software Foundation; either version 2 of
8
# the License, or (at your option) any later version.
9
# http://www.gnu.org/licenses/
10
#*****************************************************************************
11
12
from mpi4py import MPI
13
from sage.all_cmdline import *
14
15
from boolean_cayley_graphs.classify_in_mpi_parallel import save_classifications_in_parallel
16
17
r"""
18
"""
19
comm = MPI.COMM_WORLD
20
21
load("bent_function_extended_affine_representative_polynomials.sage")
22
list_of_f = bent_function_extended_affine_representative_polynomials_dimension_6()
23
save_classifications_in_parallel(comm, 'p6_test_again', list_of_f, start=1)
24
quit
25
26