{% extends "base.html" %} {% block title %}Result Details - MHA Flow{% endblock %} {% block content %}
Details

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') }}

Visualization
Best Position Found:
{{ result.get_best_position() | tojson(indent=2) }}
{% endblock %}