mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 05:27:56 -05:00
15 lines
227 B
Bash
Executable File
15 lines
227 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
HERE=$(cd `dirname $0`; pwd)
|
|
SPDZROOT=$HERE/..
|
|
|
|
export PLAYERS=${PLAYERS:-3}
|
|
|
|
if test "$THRESHOLD"; then
|
|
t="-T $THRESHOLD"
|
|
fi
|
|
|
|
. $HERE/run-common.sh
|
|
|
|
run_player malicious-shamir-party.x $* $t || exit 1
|