Mac-Coleman / CSC-311-Scheduling-Algorithms

A process scheduling simulator written in Python for class
0 stars 1 forks source link

Input File Parsing #4

Open Mac-Coleman opened 1 year ago

Mac-Coleman commented 1 year ago

The program needs to be able to parse trace files such as those in .csv and .txt files. The files should likely be parsed into a list of processes or another data structure. It should produce errors if the input file is in an invalid format or if there are other issues with what is being parsed.

Ideally, after parsing, the processes should be sorted into a list based on their arrival times.

Mac-Coleman commented 1 year ago

Added in latest merge.

Mac-Coleman commented 1 year ago

As in #14 We are unfortunately unable to use the Pandas library. I am reopening this.