summaryrefslogtreecommitdiff
path: root/src/pages/evaluation.astro
blob: 789018dbf56c3c4629ecd682ab2cd998b9079779 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
import Layout from '../layouts/Layout.astro';
import Card from '../components/Card.astro';
import Nav from '../components/layout/Nav.astro';
import HomeBody from '../components/HomeBody.astro';
---

<Layout title="Scilab Case Study Hackathon">
<!-- <div class="grid grid-cols-1 md:grid-cols-2 gap-0 bg-gray-200 "> -->
    <div class="md:px-4 pb-5">
      <div class="md:px-20 px-3">
        <h1 class="text-center section-title pl-4" id="evaluation">Evaluation Criteria</h1>
        <ul class="list-disc list-inside space-y-2 pt-4">
    <li>Complexity of the problem, including its technical depth and challenges. &nbsp;</li>
    <li>Quality of the journal, considering its credibility and impact factor. &nbsp;</li>
    <li>Novelty of the topic, focusing on originality and innovation. &nbsp;&nbsp;</li>
    <li>Accuracy of the reproduced results compared to the reference paper. &nbsp;</li>
    <li>Effective and innovative use of Scilab features and toolboxes. &nbsp;</li>
    <li>Readability, proper documentation, and adherence to best coding practices. &nbsp;</li>
    </ul>
      </div>
    </div>
  
    
  <!-- </div> -->
</Layout>