-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
216 lines (202 loc) · 10.3 KB
/
index.html
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!DOCTYPE html>
<html lang="pt-br">
<head>
<!-- Meta -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Algoritmos de Pesquisa Operacional">
<!-- End of meta -->
<!-- Title -->
<title>SIMO - Pesquisa Operacional</title>
<!-- End of title -->
<!-- Stylesheets -->
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/light.css" id="scheme" />
<link rel="stylesheet" type="text/css" href="css/responsive-nav.css" />
<link rel="stylesheet" type="text/css" href="css/flexslider.css" />
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="css/opensans.css" />
<link rel="stylesheet" type="text/css" href="css/colors/blue.css" id="colors" />
<!-- End of stylesheets -->
<link href="img/favicon.ico" rel="icon" type="image/x-icon" />
</head>
<body>
<!-- Header -->
<header>
<div class="top container">
<!-- Logo area -->
<div class="logo-left-bg"></div>
<div class="logo-left one-fourth">
<!-- Logo -->
<a class="logo">SIMO<span>Pesquisa Operacional</span></a>
<!-- End of logo -->
</div>
<!-- End of logo area -->
<!-- Top right -->
<div class="top-right three-fourth last-in-row">
<!-- Top bar -->
<div class="top-bar">
<!-- Social icons -->
<div class="top-social-icons">
<ul class="footer-social social-icons">
<li><a href="#"><i class="icon-facebook"></i></a></li>
<li><a href="https://github.com/jmmccota/Otimizacao"><i class="icon-github"></i></a></li>
</ul>
</div>
<!-- End of social icons-->
</div>
<!-- End of top bar -->
<!-- Main navigation -->
<nav id="nav">
<ul>
<li><a href="index.html">Início</a></li>
<li class="parent"><a href="simplex.html">Simplex</a>
<ul>
<li>Simplex
<ul>
<li><a href="simplex.html">Começar</a></li>
<li><a href="simplex_about.html">Mais sobre o Modelo</a></li>
</ul>
</li>
</ul>
</li>
<li class="parent"><a href="branchbound.html">Branch-and-Bound</a>
<ul>
<li>Branch-and-Bound
<ul>
<li><a href="branchbound.html">Começar</a></li>
<li><a href="branchbound_about.html">Mais sobre o Modelo</a></li>
</ul>
</li>
</ul>
</li>
<li class="parent"><a href="#">Transporte</a>
<ul>
<li>Transporte
<ul>
<li><a href="transporte.html">Começar</a></li>
<li><a href="transporte_about.html">Mais sobre o Modelo</a></li>
</ul>
</li>
</ul>
</li>
<!--<li><a href="contato.html">Contato</a></li>-->
</ul>
</nav>
<!-- End of main navigation -->
</div>
<!-- End of top right -->
</div>
</header>
<!-- End of header -->
<!-- Content -->
<div id="content" class="clearfix">
<div class="container">
<hr class="sep40" />
<hr class="sep40" />
<hr class="sep40" />
<hr class="sep40" />
<!-- Projects carousel -->
<div class="project-slides">
<h1>Algoritmos de Pesquisa Operacional<span>Sistema Interatico para Métodos de Otimização(SIMO)</span></h1>
<div class="project-carousel">
<ul>
<li class="project-item green-gradient">
<div class="project-image"><img src="img/projects/simplex.jpg" alt="" /></div>
<div class="project-mask">
<a class="project-zoom" href="simplex.html"><i class="icon-plus"></i></a>
<h5 class="project-title"><a href="simplex.html">Simplex</a></h5>
</div>
</li>
<li class="project-item blue-gradient">
<div class="project-image"><img src="img/projects/branchbound.jpg" alt="" /></div>
<div class="project-mask">
<a class="project-zoom" href="branchbound.html"><i class="icon-plus"></i></a>
<h5 class="project-title"><a href="branchbound.html">Branch-and-Bound</a></h5>
</div>
</li>
<li class="project-item orange-gradient">
<div class="project-image"><img src="img/projects/transporte.jpg" alt="" /></div>
<div class="project-mask">
<a class="project-zoom" href="transporte.html"><i class="icon-plus"></i></a>
<h5 class="project-title"><a href="transporte.html">Transporte</a></h5>
</div>
</li>
</div>
</div>
<hr class="sep40" />
<!-- Text slider -->
<div class="text-slides flexslider">
<ul class="slides">
<li>
<h1 class="intro-header"><strong>Simplex</strong> </h1>
<p class="intro">Simplex é um algoritmo criado por George Dantzig que viabiliza a solução de problemas de programação
linear. </p>
<a class="button-outline green" href="simplex.html">Começar</a>
<a class="button-outline grey" href="simplex_about.html">Mais sobre o Modelo</a>
</li>
<li>
<h1 class="intro-header"><strong>Branch-and-Bound</strong> </h1>
<p class="intro">O método foi proposto por A. H. Land e A. G. Doig em 1960. Branch-and-bound é um algoritmo para encontrar
soluções ótimas de problemas de programação inteira.</p>
<a class="button-outline defalut" href="branchbound.html">Começar</a>
<a class="button-outline grey" href="branchbound_about.html">Mais sobre o Modelo</a>
</li>
<li>
<h1 class="intro-header"><strong>Transporte</strong></h1>
<p class="intro">O Problema de Transporte consiste em determinar o menor custo em transportar produtos de várias origens
para vários destinos. Aplicação direta em Logística.</p>
<a class="button-outline orange" href="transporte.html">Começar</a>
<a class="button-outline grey" href="transporte_about.html">Mais sobre o Modelo</a>
</li>
</ul>
</div>
<!-- End of text slider -->
<!-- End of projects carousel -->
<hr class="sep40" />
</div>
</div>
<!-- End of content
<!-- Footer -->
<footer>
<!-- Footer second row -->
<div class="footer-second-row">
<div class="container">
<!-- Logo area -->
<div class="logo-left-bg"></div>
<div class="logo-left one-fourth">
<!-- Logo -->
<a class="logo" href="index.html">SIMO<span>Sistema Interativo para Métodos de Otimização</span></a>
<!-- End of logo -->
</div>
<!-- End of logo area -->
<!-- Copyright and small menu -->
<div class="copyright-area three-fourth last-in-row">
<!--<span class="copyright">© Copyright 2016 by CEFET-MG. Todos os direitos reservados.</span>-->
<ul class="small-menu">
<!--<li><a href="faq.html">Dúvidas</a></li>-->
<li><a href="http://timoteo.cefetmg.br">CEFET-MG Campus Timóteo</a></li>
<!--<li><a href="contato.html">Entre em contato</a></li>-->
</ul>
</div>
<!-- End of copyright and small menu -->
</div>
</div>
<!-- End of footer second row -->
</footer>
<!-- End of footer -->
<!-- Scripts -->
<script type="text/javascript" src="js/jquery/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="js/jquery/jquery-ui-1.10.3.custom.min.js"></script>
<script type="text/javascript" src="js/jquery/jquery.jcarousel.js"></script>
<script type="text/javascript" src="js/jquery/jquery.flexslider.js"></script>
<script type="text/javascript" src="js/jquery/jquery.fitvids.js"></script>
<script type="text/javascript" src="js/responsive-nav.js"></script>
<script type="text/javascript" src="js/jquery/jquery.touchSwipe.min.js"></script>
<!-- End of scripts -->
<!-- Scripts Configuration -->
<script type="text/javascript" src="js/custom.js"></script>
<script type="text/javascript" src="js/features.js"></script>
<!-- End of scripts configuration -->
<script type="text/javascript" src="js/analytics.js"></script></body>
</html>