Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pygad.py
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,8 @@ def save(self, filename):
with open(filename + ".pkl", 'wb') as file:
pickle.dump(self, file)

def load(filename):
@staticmethod
def load(filename):
"""
Reading a saved instance of the genetic algorithm:
-filename: Name of the file to read the instance. It must have no extension.
Expand Down