Skip to content

Commit 03b7333

Browse files
committed
edit imports
1 parent 72ed507 commit 03b7333

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/DecisionMakingProblems.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ using Random
66
using LinearAlgebra
77
using GridInterpolations
88
using Parameters
9+
using Statistics
10+
using Printf
911

10-
import Base: ==, rand, vec
12+
import Base: <, ==, rand, vec,
1113

1214
include("support_code.jl")
1315

src/mdp/2048.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
###
22
# 2048
33

4-
using Statistics
5-
using Printf
64

7-
import Base: rand, <, ==
5+
6+
# import Base: rand, <, ==
87

98
# =======================================================================
109
# This code implements 2048 with a state type of UInt64.

0 commit comments

Comments
 (0)