Compare commits
No commits in common. "f4af939cb61915c8d8b6304fa7fe01101320f67e" and "079135747af3890971923341e472d5b8aeef79c9" have entirely different histories.
f4af939cb6
...
079135747a
1 changed files with 7 additions and 10 deletions
|
@ -8,16 +8,13 @@ import (
|
||||||
type Result int32
|
type Result int32
|
||||||
|
|
||||||
const (
|
const (
|
||||||
NotTested Result = 1 // change only with schema change
|
NotTested Result = 0 // change only with schema change
|
||||||
Accepted Result = 2
|
Accepted Result = 1
|
||||||
WrongAnswer Result = 3
|
CompilationError Result = 2
|
||||||
PresentationError Result = 4
|
MemoryLimitExceeded Result = 3
|
||||||
CompilationError Result = 5
|
TimeLimitExceeded Result = 4
|
||||||
MemoryLimitExceeded Result = 6
|
SystemFailDuringTesting Result = 5
|
||||||
TimeLimitExceeded Result = 7
|
Testing Result = 6
|
||||||
RuntimeError Result = 8
|
|
||||||
SystemFailDuringTesting Result = 9
|
|
||||||
Testing Result = 10
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var ErrBadResult = errors.New("bad result")
|
var ErrBadResult = errors.New("bad result")
|
||||||
|
|
Loading…
Reference in a new issue