We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ceb0444 commit 432342bCopy full SHA for 432342b
1 file changed
src/main.cpp
@@ -152,13 +152,13 @@ int main(int argc, char *argv[])
152
std::string("./bitrates/" + bitrate + ".json"),
153
networkType);
154
155
- std::string algoritmo = argv[1];
+ std::string algorithm = argv[1];
156
157
- if (algoritmo == "FirstFit")
+ if (algorithm == "FirstFit")
158
{
159
USE_ALLOC_FUNCTION(FirstFit, sim);
160
}
161
- else if (algoritmo == "BestFit")
+ else if (algorithm == "BestFit")
162
163
USE_ALLOC_FUNCTION(BestFit, sim);
164
0 commit comments