From bf05fd7057a0126987e812cb33ac87fa9d347e2a Mon Sep 17 00:00:00 2001 From: maroni Date: Sun, 29 Jul 2012 20:46:33 -0300 Subject: [PATCH] Nova rede bayesiana --- .DS_Store | Bin 15364 -> 15364 bytes setup/glassfish-resources.xml | 18 +- src/conf/persistence.xml | 2 +- .../simdecs/comunicacao/BaseComunicacao.java | 1 - .../simdecs/comunicacao/MetodoAutenticacao.java | 4 +- .../simdecs/comunicacao/MetodoIniciaCaso.java | 1 - .../simdecs/mediador/NegociacaoPedagogica.java | 4 +- src/java/org/ufcspa/simdecs/util/DbUtil.java | 12 +- src/java/org/ufcspa/simdecs/util/UnBBayesUtil.java | 10 +- web/.DS_Store | Bin 15364 -> 15364 bytes web/redes/.DS_Store | Bin 6148 -> 6148 bytes web/redes/headache2.xml | 1254 ++++++++++++++++++++ web/simulador/endereco.txt | 2 +- 13 files changed, 1290 insertions(+), 18 deletions(-) create mode 100644 web/redes/headache2.xml diff --git a/.DS_Store b/.DS_Store index 0d7208a9ad2433fb781bb455199396352ad9bd9d..ac0e429f44b48940a01ecc40a5fa520727d1d1b3 100644 GIT binary patch delta 50 zcmZpvXsOunL}c=5fec2|$<`vCo2QEwaBXH&aAIW@udX(PiRCeE7S#AGJh6cn0M{-N AQvd(} delta 90 zcmZpvXsOunM1*nu - + @@ -10,5 +24,5 @@ - + diff --git a/src/conf/persistence.xml b/src/conf/persistence.xml index 9cb2af7..d4532a1 100644 --- a/src/conf/persistence.xml +++ b/src/conf/persistence.xml @@ -2,7 +2,7 @@ org.hibernate.ejb.HibernatePersistence - jdbc/SimDeCS + jdbc/SimDeCS2 org.ufcspa.simdecs.entities.Caso org.ufcspa.simdecs.entities.DependenciaNodo org.ufcspa.simdecs.entities.IntervaloTabelaResposta diff --git a/src/java/org/ufcspa/simdecs/comunicacao/BaseComunicacao.java b/src/java/org/ufcspa/simdecs/comunicacao/BaseComunicacao.java index b3b33e6..05ceadb 100644 --- a/src/java/org/ufcspa/simdecs/comunicacao/BaseComunicacao.java +++ b/src/java/org/ufcspa/simdecs/comunicacao/BaseComunicacao.java @@ -87,7 +87,6 @@ public abstract class BaseComunicacao extends HttpServlet { try { EntityManager em = DbUtil.getInstance().getEntityManager(); - executaServico(em, request, response, out); } catch(Exception e) { out.println("" ); diff --git a/src/java/org/ufcspa/simdecs/comunicacao/MetodoAutenticacao.java b/src/java/org/ufcspa/simdecs/comunicacao/MetodoAutenticacao.java index 246f368..a770b23 100644 --- a/src/java/org/ufcspa/simdecs/comunicacao/MetodoAutenticacao.java +++ b/src/java/org/ufcspa/simdecs/comunicacao/MetodoAutenticacao.java @@ -8,10 +8,10 @@ import java.io.PrintWriter; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.persistence.EntityManager; +import javax.persistence.EntityManagerFactory; import javax.persistence.NoResultException; -import org.ufcspa.simdecs.action.Action; +import javax.persistence.PersistenceUnit; import org.ufcspa.simdecs.entities.Usuario; -import org.ufcspa.simdecs.util.JadeUtil; /** * diff --git a/src/java/org/ufcspa/simdecs/comunicacao/MetodoIniciaCaso.java b/src/java/org/ufcspa/simdecs/comunicacao/MetodoIniciaCaso.java index 014e311..9cb28c2 100644 --- a/src/java/org/ufcspa/simdecs/comunicacao/MetodoIniciaCaso.java +++ b/src/java/org/ufcspa/simdecs/comunicacao/MetodoIniciaCaso.java @@ -63,7 +63,6 @@ public class MetodoIniciaCaso extends BaseComunicacao { continue; } - ProbabilisticNode pn = (ProbabilisticNode) unBUtil.getNodeByName(nodoPac.getNodo().getNome()); unBUtil.setNodeState(pn, "Yes", 1, "Not", 0); } diff --git a/src/java/org/ufcspa/simdecs/mediador/NegociacaoPedagogica.java b/src/java/org/ufcspa/simdecs/mediador/NegociacaoPedagogica.java index 0b947cc..f90ed06 100644 --- a/src/java/org/ufcspa/simdecs/mediador/NegociacaoPedagogica.java +++ b/src/java/org/ufcspa/simdecs/mediador/NegociacaoPedagogica.java @@ -602,8 +602,8 @@ public class NegociacaoPedagogica { intervencao.setEstrategia(estrategia); intervencao.setResultado(resultado); intervencao.setSessaoUsuario(sessaoUsuario); -System.out.println("pResultado: " + resultado); -System.out.println("pEstrategia: " + estrategia); +//System.out.println("pResultado: " + resultado); +//System.out.println("pEstrategia: " + estrategia); TaticaPedagogica tatica = (TaticaPedagogica) em.createQuery("From TaticaPedagogica where resultado=:pResultado and estrategia=:pEstrategia") .setParameter("pResultado", resultado) .setParameter("pEstrategia", estrategia) diff --git a/src/java/org/ufcspa/simdecs/util/DbUtil.java b/src/java/org/ufcspa/simdecs/util/DbUtil.java index 4510115..e16e030 100644 --- a/src/java/org/ufcspa/simdecs/util/DbUtil.java +++ b/src/java/org/ufcspa/simdecs/util/DbUtil.java @@ -15,17 +15,25 @@ import javax.persistence.Persistence; public class DbUtil { private static DbUtil dbUtil; + private EntityManagerFactory emf = Persistence.createEntityManagerFactory("SimDeCSPU"); private EntityManager em; private DbUtil() { - EntityManagerFactory emf = Persistence.createEntityManagerFactory("SimDeCSPU"); + emf = Persistence.createEntityManagerFactory("SimDeCSPU"); + //em = emf.createEntityManager(); + } + + public void refreshConnections() { + em = emf.createEntityManager(); } - public static DbUtil getInstance() { + public synchronized static DbUtil getInstance() { if (dbUtil == null) dbUtil = new DbUtil(); + dbUtil.refreshConnections(); + return dbUtil; } diff --git a/src/java/org/ufcspa/simdecs/util/UnBBayesUtil.java b/src/java/org/ufcspa/simdecs/util/UnBBayesUtil.java index 0f2597c..63049d4 100644 --- a/src/java/org/ufcspa/simdecs/util/UnBBayesUtil.java +++ b/src/java/org/ufcspa/simdecs/util/UnBBayesUtil.java @@ -37,7 +37,6 @@ public class UnBBayesUtil { // required to run unbbayes gui classes on server System.setProperty("java.awt.headless", "false"); rede = new ProbabilisticNetwork("rede"+redeEntity.getId()); - XMLBIFIO.loadXML(new File(redeEntity.getArquivo()), rede); compilar(); @@ -52,8 +51,9 @@ public class UnBBayesUtil { public Node getNodeByName(String nodeName) { for(Node node : rede.getNodes()) { - if (node.getName().toLowerCase().equals(nodeName.toLowerCase())) - return node; + if (node.getName().toLowerCase().equals(nodeName.toLowerCase())) { + return node; + } } return null; @@ -110,10 +110,8 @@ public class UnBBayesUtil { rede.updateEvidences(); } - public List getProbabilidades(TreeVariable node) { - + public List getProbabilidades(TreeVariable node) { List listProbs = new ArrayList(); - for (int i=0; i < node.getStatesSize(); i++) listProbs.add(new ProbabilisticBean(node.getStateAt(i), node.getMarginalAt(i))); diff --git a/web/.DS_Store b/web/.DS_Store index c7e96f1cb7e17c9b99f25d4639fb35c7cc67157d..567549bd4dede54fa78d98c59ee399b43f1cd55f 100644 GIT binary patch delta 67 zcmZpvXsOt6Pe_b`fr0J+e;~=gz{*g>kjjt(#Kn_;%9XI0>L}=%7);(M;<9<8a464a Vc7&}H)`;ZUB^!K>cIHc>3Z6f6~w`5FEwe}MlczL_1WZPKe0 znF+IRvzfQUz73fyfG}F-7r+oepDx%LuxT-QF5a+?jr52?=U5=e950w))`<3jT~t8! z?gSZLxo-ZgN^9s!754y&;*KZ(Lg z3{%4@BA?Jgq!J@F*byT{I>!@>OAV`tk&a-8k6@XDolt^i=lqF=Bcu_%bp>33bp`g~ z?NI9f)%NrMI?3-`0axH(DG<8jyYYxivfA2MoYdNc{y-O#xGLg`!j6_=#!4wZrK@o~ Xkq$96tRixR=05@|gEy|gpDOST5I|fl delta 70 zcmZoMXfc=|#>AjHu~2NHo+1YW5HK<@2y9MdUdFPyfSHSVGdl-A2T%b} + + + 1.0 + headache v2 + UnBBayes + + + 40 + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rest Relief + + + + + Nuchal rigidity + + + + + Nasal Obstruction + + + + + Visual Disturbance + + + + + High frequency + + + + + Antimicrobians + + + + + Fever + + + + + Nasal Discharge + + + + + Sinusitis + + + + + Facial Pain + + + + + Painful mastication + + + + + Temporomandibular + + + + + Aneurysmal History + + + + + Acute weakness + + + + + Diplopy + + + + + Seizure + + + + + Imaging Investigation + + + + + Specialist + + + + + Profilaxy + + + + + Analgesia + + + + + Unilateral Red Eye + + + + + Photophobia + + + + + Pulsating Pain + + + + + Hemicranial Pain + + + + + Cluster Headache + + + + + Migraine + + + + + Tension-type Headache + + + + + Nausea + + + + + Holocranial Pain + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.10000000149011612 + 0.8999999761581421 + + + + + + 0.0010000000474974513 + 0.9990000128746033 + + + + + + 0.05000000074505806 + 0.949999988079071 + + + + + + 0.009999999776482582 + 0.9900000095367432 + + + + + + + + + + 0.4000000059604645 + 0.6000000238418579 + 0.30000001192092896 + 0.699999988079071 + 0.3499999940395355 + 0.6499999761581421 + 0.009999999776482582 + 0.9900000095367432 + + + + + + + + + 0.9990000128746033 + 0.0010000000474974513 + 0.0010000000474974513 + 0.9990000128746033 + + + + + + 0.009999999776482582 + 0.9900000095367432 + + + + + + 0.10000000149011612 + 0.8999999761581421 + + + + + + + + + + + + 0.949999988079071 + 0.05000000074505806 + 0.75 + 0.25 + 0.699999988079071 + 0.30000001192092896 + 0.3499999940395355 + 0.6499999761581421 + 0.8999999761581421 + 0.10000000149011612 + 0.699999988079071 + 0.30000001192092896 + 0.6499999761581421 + 0.3499999940395355 + 0.15000000596046448 + 0.8500000238418579 + 0.8999999761581421 + 0.10000000149011612 + 0.699999988079071 + 0.30000001192092896 + 0.6499999761581421 + 0.3499999940395355 + 0.15000000596046448 + 0.8500000238418579 + 0.699999988079071 + 0.30000001192092896 + 0.20000000298023224 + 0.800000011920929 + 0.30000001192092896 + 0.699999988079071 + 0.009999999776482582 + 0.9900000095367432 + + + + + + 0.05000000074505806 + 0.949999988079071 + + + + + + 0.05000000074505806 + 0.949999988079071 + + + + + + + + + + 0.9900000095367432 + 0.009999999776482582 + 0.5 + 0.5 + 0.800000011920929 + 0.20000000298023224 + 0.009999999776482582 + 0.9900000095367432 + + + + + + 0.0010000000474974513 + 0.9990000128746033 + + + + + + 0.009999999776482582 + 0.9900000095367432 + + + + + + 0.009999999776482582 + 0.9900000095367432 + + + + + + 0.009999999776482582 + 0.9900000095367432 + + + + + + + + + + + + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.009999999776482582 + 0.9900000095367432 + + + + + + + + + + + + + + + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.8999999761581421 + 0.10000000149011612 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.699999988079071 + 0.30000001192092896 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.8999999761581421 + 0.10000000149011612 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9900000095367432 + 0.009999999776482582 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.8999999761581421 + 0.10000000149011612 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.9990000128746033 + 0.0010000000474974513 + 0.0010000000474974513 + 0.9990000128746033 + + + + + + + + + 0.9900000095367432 + 0.009999999776482582 + 0.009999999776482582 + 0.9900000095367432 + + + + + + + + + + + + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.009999999776482582 + 0.9900000095367432 + + + + + + 0.009999999776482582 + 0.9900000095367432 + + + + + + 0.0010000000474974513 + 0.9990000128746033 + + + + + + 0.009999999776482582 + 0.9900000095367432 + + + + + + 0.0010000000474974513 + 0.9990000128746033 + + + + + + + + + + + + + + 0.9900000095367432 + 0.009999999776482582 + 0.20000000298023224 + 0.800000011920929 + 0.6499999761581421 + 0.3499999940395355 + 0.30000001192092896 + 0.699999988079071 + 0.8999999761581421 + 0.10000000149011612 + 0.10000000149011612 + 0.8999999761581421 + 0.6000000238418579 + 0.4000000059604645 + 0.20000000298023224 + 0.800000011920929 + 0.6499999761581421 + 0.3499999940395355 + 0.4000000059604645 + 0.6000000238418579 + 0.800000011920929 + 0.20000000298023224 + 0.30000001192092896 + 0.699999988079071 + 0.800000011920929 + 0.20000000298023224 + 0.4000000059604645 + 0.6000000238418579 + 0.4000000059604645 + 0.6000000238418579 + 0.009999999776482582 + 0.9900000095367432 + 0.9900000095367432 + 0.009999999776482582 + 0.4000000059604645 + 0.6000000238418579 + 0.8999999761581421 + 0.10000000149011612 + 0.20000000298023224 + 0.800000011920929 + 0.949999988079071 + 0.05000000074505806 + 0.20000000298023224 + 0.800000011920929 + 0.800000011920929 + 0.20000000298023224 + 0.10000000149011612 + 0.8999999761581421 + 0.009999999776482582 + 0.9900000095367432 + 0.20000000298023224 + 0.800000011920929 + 0.10000000149011612 + 0.8999999761581421 + 0.05000000074505806 + 0.949999988079071 + 0.10000000149011612 + 0.8999999761581421 + 0.009999999776482582 + 0.9900000095367432 + 0.550000011920929 + 0.44999998807907104 + 0.0010000000474974513 + 0.9990000128746033 + 0.949999988079071 + 0.05000000074505806 + 0.6499999761581421 + 0.3499999940395355 + 0.8999999761581421 + 0.10000000149011612 + 0.550000011920929 + 0.44999998807907104 + 0.8999999761581421 + 0.10000000149011612 + 0.550000011920929 + 0.44999998807907104 + 0.8999999761581421 + 0.10000000149011612 + 0.550000011920929 + 0.44999998807907104 + 0.550000011920929 + 0.44999998807907104 + 0.10000000149011612 + 0.8999999761581421 + 0.6000000238418579 + 0.4000000059604645 + 0.10000000149011612 + 0.8999999761581421 + 0.15000000596046448 + 0.8500000238418579 + 0.05000000074505806 + 0.949999988079071 + 0.05000000074505806 + 0.949999988079071 + 0.009999999776482582 + 0.9900000095367432 + 0.9900000095367432 + 0.009999999776482582 + 0.30000001192092896 + 0.699999988079071 + 0.8999999761581421 + 0.10000000149011612 + 0.20000000298023224 + 0.800000011920929 + 0.8181819915771484 + 0.18181799352169037 + 0.30000001192092896 + 0.699999988079071 + 0.550000011920929 + 0.44999998807907104 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.20000000298023224 + 0.800000011920929 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + 0.009999999776482582 + 0.9900000095367432 + + + + + + + + + + + + + + + 0.699999988079071 + 0.30000001192092896 + 0.6499999761581421 + 0.3499999940395355 + 0.5 + 0.5 + 0.44999998807907104 + 0.550000011920929 + 0.699999988079071 + 0.30000001192092896 + 0.6499999761581421 + 0.3499999940395355 + 0.5 + 0.5 + 0.44999998807907104 + 0.550000011920929 + 0.699999988079071 + 0.30000001192092896 + 0.6499999761581421 + 0.3499999940395355 + 0.44999998807907104 + 0.550000011920929 + 0.3499999940395355 + 0.6499999761581421 + 0.5 + 0.5 + 0.4000000059604645 + 0.6000000238418579 + 0.3499999940395355 + 0.6499999761581421 + 0.009999999776482582 + 0.9900000095367432 + 0.699999988079071 + 0.30000001192092896 + 0.6499999761581421 + 0.3499999940395355 + 0.5 + 0.5 + 0.4000000059604645 + 0.6000000238418579 + 0.699999988079071 + 0.30000001192092896 + 0.6499999761581421 + 0.3499999940395355 + 0.699999988079071 + 0.30000001192092896 + 0.4000000059604645 + 0.6000000238418579 + 0.699999988079071 + 0.30000001192092896 + 0.6499999761581421 + 0.3499999940395355 + 0.5 + 0.5 + 0.30000001192092896 + 0.699999988079071 + 0.5 + 0.5 + 0.31818199157714844 + 0.6818180084228516 + 0.30000001192092896 + 0.699999988079071 + 0.009999999776482582 + 0.9900000095367432 + 0.699999988079071 + 0.30000001192092896 + 0.6499999761581421 + 0.3499999940395355 + 0.5 + 0.5 + 0.6666669845581055 + 0.33333298563957214 + 0.699999988079071 + 0.30000001192092896 + 0.6000000238418579 + 0.4000000059604645 + 0.5 + 0.5 + 0.4000000059604645 + 0.6000000238418579 + 0.699999988079071 + 0.30000001192092896 + 0.6499999761581421 + 0.3499999940395355 + 0.44999998807907104 + 0.550000011920929 + 0.3499999940395355 + 0.6499999761581421 + 0.5 + 0.5 + 0.3499999940395355 + 0.6499999761581421 + 0.30000001192092896 + 0.699999988079071 + 0.009999999776482582 + 0.9900000095367432 + 0.699999988079071 + 0.30000001192092896 + 0.6499999761581421 + 0.3499999940395355 + 0.5 + 0.5 + 0.4000000059604645 + 0.6000000238418579 + 0.699999988079071 + 0.30000001192092896 + 0.6499999761581421 + 0.3499999940395355 + 0.5 + 0.5 + 0.4000000059604645 + 0.6000000238418579 + 0.6499999761581421 + 0.3499999940395355 + 0.699999988079071 + 0.30000001192092896 + 0.44999998807907104 + 0.550000011920929 + 0.3499999940395355 + 0.6499999761581421 + 0.5 + 0.5 + 0.3499999940395355 + 0.6499999761581421 + 0.5 + 0.5 + 0.05000000074505806 + 0.949999988079071 + 0.9990000128746033 + 0.0010000000474974513 + 0.9900000095367432 + 0.009999999776482582 + 0.699999988079071 + 0.30000001192092896 + 0.6499999761581421 + 0.3499999940395355 + 0.9900000095367432 + 0.009999999776482582 + 0.800000011920929 + 0.20000000298023224 + 0.699999988079071 + 0.30000001192092896 + 0.6499999761581421 + 0.3499999940395355 + 0.949999988079071 + 0.05000000074505806 + 0.8999999761581421 + 0.10000000149011612 + 0.6499999761581421 + 0.3499999940395355 + 0.550000011920929 + 0.44999998807907104 + 0.699999988079071 + 0.30000001192092896 + 0.6000000238418579 + 0.4000000059604645 + 0.550000011920929 + 0.44999998807907104 + 0.05000000074505806 + 0.949999988079071 + 0.9990000128746033 + 0.0010000000474974513 + 0.9900000095367432 + 0.009999999776482582 + 0.699999988079071 + 0.30000001192092896 + 0.6000000238418579 + 0.4000000059604645 + 0.9900000095367432 + 0.009999999776482582 + 0.800000011920929 + 0.20000000298023224 + 0.699999988079071 + 0.30000001192092896 + 0.6000000238418579 + 0.4000000059604645 + 0.949999988079071 + 0.05000000074505806 + 0.8999999761581421 + 0.10000000149011612 + 0.6499999761581421 + 0.3499999940395355 + 0.550000011920929 + 0.44999998807907104 + 0.699999988079071 + 0.30000001192092896 + 0.550000011920929 + 0.44999998807907104 + 0.5 + 0.5 + 0.05000000074505806 + 0.949999988079071 + 0.9990000128746033 + 0.0010000000474974513 + 0.9900000095367432 + 0.009999999776482582 + 0.699999988079071 + 0.30000001192092896 + 0.6000000238418579 + 0.4000000059604645 + 0.9900000095367432 + 0.009999999776482582 + 0.800000011920929 + 0.20000000298023224 + 0.699999988079071 + 0.30000001192092896 + 0.6000000238418579 + 0.4000000059604645 + 0.949999988079071 + 0.05000000074505806 + 0.8999999761581421 + 0.10000000149011612 + 0.6499999761581421 + 0.3499999940395355 + 0.550000011920929 + 0.44999998807907104 + 0.699999988079071 + 0.30000001192092896 + 0.550000011920929 + 0.44999998807907104 + 0.5 + 0.5 + 0.05000000074505806 + 0.949999988079071 + 0.9990000128746033 + 0.0010000000474974513 + 0.9900000095367432 + 0.009999999776482582 + 0.699999988079071 + 0.30000001192092896 + 0.6000000238418579 + 0.4000000059604645 + 0.9900000095367432 + 0.009999999776482582 + 0.800000011920929 + 0.20000000298023224 + 0.699999988079071 + 0.30000001192092896 + 0.6000000238418579 + 0.4000000059604645 + 0.949999988079071 + 0.05000000074505806 + 0.8999999761581421 + 0.10000000149011612 + 0.6499999761581421 + 0.3499999940395355 + 0.550000011920929 + 0.44999998807907104 + 0.699999988079071 + 0.30000001192092896 + 0.550000011920929 + 0.44999998807907104 + 0.5 + 0.5 + 0.05000000074505806 + 0.949999988079071 + + + + + + + + + + 0.6000000238418579 + 0.4000000059604645 + 0.20000000298023224 + 0.800000011920929 + 0.9900000095367432 + 0.009999999776482582 + 0.800000011920929 + 0.20000000298023224 + + + + + + 0.029999999329447746 + 0.9700000286102295 + + + + + + 0.05000000074505806 + 0.949999988079071 + + + + + \ No newline at end of file diff --git a/web/simulador/endereco.txt b/web/simulador/endereco.txt index c913bec..8eb132d 100755 --- a/web/simulador/endereco.txt +++ b/web/simulador/endereco.txt @@ -1 +1 @@ -http://200.18.67.61/simdecs/ \ No newline at end of file +http://localhost:8080/simdecs/ \ No newline at end of file -- 1.7.6.4