Skip to content

Commit 3bae8f4

Browse files
committed
Corrections v2
1 parent 33f370e commit 3bae8f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

other/dpll.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"""
1010

1111
import random
12-
from typing import List, Dict
12+
from typing import Dict, List
1313

1414

1515
class Clause:
@@ -54,7 +54,7 @@ def __str__(self) -> str:
5454

5555
return clause
5656

57-
def assign(self, model: Dict[str, bool]) -> None:
57+
def assign(self, model: Dict[str, bool]) -> None:
5858
"""
5959
Assign values to literals of the clause as given by model.
6060
"""

0 commit comments

Comments
 (0)