{% extends "base.html" %} {% block title %}Result Details - MHA Flow{% endblock %} {% block content %}
Algorithm:
{{ result.algorithm_name }}
Objective Function:
{{ result.objective_function }}
Status:
{{ result.status }}
Population Size: {{ result.population_size }}
Max Iterations: {{ result.max_iterations }}
Dimensions: {{ result.dimensions }}
Bounds: [{{ result.lower_bound }}, {{ result.upper_bound }}]
Best Fitness:
{{ "%.6e"|format(result.best_fitness) }}
Execution Time:
{{ "%.4f"|format(result.execution_time) }} seconds
Created:
{{ result.created_at.strftime('%Y-%m-%d %H:%M:%S') }}
{{ result.get_best_position() | tojson(indent=2) }}