2022-02-04 01:14:51 +00:00
|
|
|
import { Heading, Chapter, Box, Panel, Idiomatic as I, ListUnordered, Emphasis } from '@steffo/bluelib-react'
|
|
|
|
import { Link } from '../../../components/link'
|
2022-06-28 17:13:40 +00:00
|
|
|
import type { NextPage, NextPageContext } from 'next'
|
2022-02-04 17:41:40 +00:00
|
|
|
import { Warn1024 } from '../../../components/warn'
|
2022-02-04 01:14:51 +00:00
|
|
|
|
|
|
|
|
2022-06-28 17:13:40 +00:00
|
|
|
export async function getStaticProps(_context: NextPageContext) {
|
|
|
|
return {
|
|
|
|
props: {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-02-04 01:14:51 +00:00
|
|
|
const Page: NextPage = () => {
|
|
|
|
return <>
|
|
|
|
<Heading level={2}>
|
|
|
|
Ottimizzazione lineare intera
|
|
|
|
</Heading>
|
|
|
|
<Chapter>
|
|
|
|
<Box>
|
|
|
|
<Heading level={3}>
|
|
|
|
Premessa
|
|
|
|
</Heading>
|
|
|
|
<p>
|
|
|
|
Buona parte degli appunti di ottimizzazione non sono terminati, perchè... ho perso la voglia di farli a metà.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Penso che possano essere utili lo stesso, però.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Se l'esame è ancora come quando l'ho dato io, suggerisco di fare <Emphasis>molta</Emphasis> attenzione a come vengono assegnati i punti, perchè potrebbero essere nascosti tranelli che potrebbero facilmente azzerarvi il punteggio. <small>Parlo per esperienza.</small>
|
|
|
|
</p>
|
|
|
|
</Box>
|
|
|
|
</Chapter>
|
|
|
|
<Chapter>
|
|
|
|
<Box>
|
|
|
|
<Heading level={3}>
|
|
|
|
Materiale raccolto
|
|
|
|
</Heading>
|
|
|
|
<Chapter>
|
|
|
|
<Panel>
|
|
|
|
<Heading level={4}>
|
|
|
|
Appuntiweb
|
|
|
|
</Heading>
|
2022-02-04 17:41:40 +00:00
|
|
|
<Warn1024/>
|
2022-02-04 01:14:51 +00:00
|
|
|
<ListUnordered>
|
|
|
|
<ListUnordered.Item>
|
|
|
|
<Link href="/year2/ottimizzazione/teoria">
|
|
|
|
Appunti di teoria
|
|
|
|
</Link>
|
|
|
|
</ListUnordered.Item>
|
|
|
|
</ListUnordered>
|
|
|
|
</Panel>
|
|
|
|
</Chapter>
|
|
|
|
</Box>
|
|
|
|
</Chapter>
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Page
|