mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-27 17:23:19 +00:00
formatting
This commit is contained in:
parent
db9a61f83c
commit
4ad61eb08d
3 changed files with 6 additions and 6 deletions
|
|
@ -1,12 +1,12 @@
|
|||
"""Propositional logic task generator"""
|
||||
|
||||
from dataclasses import dataclass
|
||||
from enum import Enum
|
||||
from enum import StrEnum
|
||||
from random import Random
|
||||
from typing import Any, List, Optional, Set, Tuple
|
||||
from typing import Any, List, Optional, Set
|
||||
|
||||
|
||||
class Operator(Enum):
|
||||
class Operator(StrEnum):
|
||||
"""Basic logical operators"""
|
||||
|
||||
AND = "∧"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue