tscircuit/autorouting-dataset-01
This code manages the hardware and electronic components for circuit design and PCB layout, defining components like resistors, capacitors, transistors, connectors, and footprints, and providing tools for component placement, PCB topology, and electrical connections.
- Version
- 1.0.102
- License
- unset
- Stars
- 4
scripts/run-benchmark/generateHtmlVisualization/generateHeader.ts
/**
* Generates the HTML header section with benchmark title and scenario count.
*/
export const generateHeader = (summary_json: { scenarioCount: number }) => {
return `<header class="mb-8">
<h1 class="text-4xl font-bold text-blue-600 mb-2">Autorouting Benchmark Results</h1>
<p class="text-gray-600">Total Scenarios: ${summary_json.scenarioCount}</p>
</header>`
}