public static void alchemyClassificationRoutine() {
System.out.println("Beginning complete Alchemy classification...");
Profiler profiler = new Profiler();
while(!synchronisedUserIDList.isEmpty()) {
long currentID = synchronisedUserIDList.remove(0);
SimpleProfile profile = profiler.loadCSVProfile(currentID);
if(!profile.classifyAlchemy()) {
System.err.println("Failed to classify profile properly, probably reached the daily limit");
return;
}
}
System.out.println("Classification thread complete");