├── .gitignore ├── .idea ├── .gitignore ├── Reliability.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── Reliability.iml ├── Resultados.xlsx ├── __pycache__ ├── realpy.cpython-310.pyc └── realpy.cpython-312.pyc ├── abaco_form.py ├── adapt-melchers89.py ├── adapt_example14-6-Ayyub.py ├── adapt_example7-3.py ├── adapt_example7-4.py ├── adapt_example7-5.py ├── adapt_example7-6.py ├── adapt_example7-7.py ├── adapt_example7-8.py ├── adapt_example7-9.py ├── adapt_exemple6-6.py ├── adapt_teste_beta.py ├── buch-melchers89.py ├── buch-melchers90b.py ├── buch_column_1.py ├── buch_example6-6.py ├── buch_example7-3.py ├── buch_example7-4.py ├── buch_example7-5.py ├── buch_example7-6.py ├── buch_example7-7.py ├── buch_example7-8.py ├── buch_example7-9.py ├── buch_teste_beta.py ├── bucher_exemple6-6.py ├── cdf_td.pdf ├── column_1.py ├── continuous_beam.py ├── dados_td.xlsx ├── example14-6-Ayyub.py ├── example6-6.py ├── example7-3.py ├── example7-4.py ├── example7-5.py ├── example7-6.py ├── example7-7.py ├── example7-8.py ├── example7-9.py ├── form-G2R.py ├── form-Santos_Beck_Stucchi.py ├── form-cubic.py ├── form-fire.py ├── form-haldar-example8-3.py ├── form-hurtado.py ├── form-melchers89.py ├── form-melchers90a.py ├── form-melchers90b.py ├── form_SCBA1.py ├── form_duracon1.py ├── form_exemple6-5.py ├── form_exemple6-6.py ├── form_teste_beta2.py ├── form_uniform_test.py ├── g1_example2_melchers90.py ├── g2_example2_melchers90.py ├── g3_example2_melchers90.py ├── mc-G2R.py ├── mc-Santos_Beck_Stucchi.py ├── mc-fire.py ├── mc-hurtado.py ├── mc-melchers89.py ├── mc_buckling1.py ├── mc_duracon1.py ├── mc_duracon2.py ├── mc_example7-3.py ├── mc_example7-4.py ├── mc_example7-5.py ├── mc_example7-6.py ├── mc_example7-7.py ├── mc_example7-8.py ├── mc_example7-9.py ├── mc_exemple6-4.py ├── mc_exemple6-5.py ├── mc_exemple6-6.py ├── mc_teste_beta.py ├── mc_teste_beta2.py ├── mc_teste_gamma.py ├── mc_teste_gamma2.py ├── mc_uniform_test.py ├── mcadapt-cubic.py ├── mcis-cubic.py ├── misc.xml ├── modules.xml ├── multig_example1_melchers90.py ├── multig_example2_melchers90.py ├── multig_example7_beck.py ├── pdf └── Geração de variáveis correlacionadas.pdf ├── realpy.py ├── sapata_corrida.py ├── sorm-choi-example4-8.py ├── sorm-example8-1-haldar.py ├── teste_beta_form.py ├── teste_gamma_form.py ├── teste_gamma_form2.py ├── teste_geral_form.py ├── teste_geral_mc.py ├── uniform_test.py ├── vcs.xml └── workspace.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/Reliability.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/.idea/Reliability.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/README.md -------------------------------------------------------------------------------- /Reliability.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/Reliability.iml -------------------------------------------------------------------------------- /Resultados.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/Resultados.xlsx -------------------------------------------------------------------------------- /__pycache__/realpy.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/__pycache__/realpy.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/realpy.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/__pycache__/realpy.cpython-312.pyc -------------------------------------------------------------------------------- /abaco_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/abaco_form.py -------------------------------------------------------------------------------- /adapt-melchers89.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/adapt-melchers89.py -------------------------------------------------------------------------------- /adapt_example14-6-Ayyub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/adapt_example14-6-Ayyub.py -------------------------------------------------------------------------------- /adapt_example7-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/adapt_example7-3.py -------------------------------------------------------------------------------- /adapt_example7-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/adapt_example7-4.py -------------------------------------------------------------------------------- /adapt_example7-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/adapt_example7-5.py -------------------------------------------------------------------------------- /adapt_example7-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/adapt_example7-6.py -------------------------------------------------------------------------------- /adapt_example7-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/adapt_example7-7.py -------------------------------------------------------------------------------- /adapt_example7-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/adapt_example7-8.py -------------------------------------------------------------------------------- /adapt_example7-9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/adapt_example7-9.py -------------------------------------------------------------------------------- /adapt_exemple6-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/adapt_exemple6-6.py -------------------------------------------------------------------------------- /adapt_teste_beta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/adapt_teste_beta.py -------------------------------------------------------------------------------- /buch-melchers89.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/buch-melchers89.py -------------------------------------------------------------------------------- /buch-melchers90b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/buch-melchers90b.py -------------------------------------------------------------------------------- /buch_column_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/buch_column_1.py -------------------------------------------------------------------------------- /buch_example6-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/buch_example6-6.py -------------------------------------------------------------------------------- /buch_example7-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/buch_example7-3.py -------------------------------------------------------------------------------- /buch_example7-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/buch_example7-4.py -------------------------------------------------------------------------------- /buch_example7-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/buch_example7-5.py -------------------------------------------------------------------------------- /buch_example7-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/buch_example7-6.py -------------------------------------------------------------------------------- /buch_example7-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/buch_example7-7.py -------------------------------------------------------------------------------- /buch_example7-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/buch_example7-8.py -------------------------------------------------------------------------------- /buch_example7-9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/buch_example7-9.py -------------------------------------------------------------------------------- /buch_teste_beta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/buch_teste_beta.py -------------------------------------------------------------------------------- /bucher_exemple6-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/bucher_exemple6-6.py -------------------------------------------------------------------------------- /cdf_td.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/cdf_td.pdf -------------------------------------------------------------------------------- /column_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/column_1.py -------------------------------------------------------------------------------- /continuous_beam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/continuous_beam.py -------------------------------------------------------------------------------- /dados_td.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/dados_td.xlsx -------------------------------------------------------------------------------- /example14-6-Ayyub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/example14-6-Ayyub.py -------------------------------------------------------------------------------- /example6-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/example6-6.py -------------------------------------------------------------------------------- /example7-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/example7-3.py -------------------------------------------------------------------------------- /example7-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/example7-4.py -------------------------------------------------------------------------------- /example7-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/example7-5.py -------------------------------------------------------------------------------- /example7-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/example7-6.py -------------------------------------------------------------------------------- /example7-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/example7-7.py -------------------------------------------------------------------------------- /example7-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/example7-8.py -------------------------------------------------------------------------------- /example7-9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/example7-9.py -------------------------------------------------------------------------------- /form-G2R.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/form-G2R.py -------------------------------------------------------------------------------- /form-Santos_Beck_Stucchi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/form-Santos_Beck_Stucchi.py -------------------------------------------------------------------------------- /form-cubic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/form-cubic.py -------------------------------------------------------------------------------- /form-fire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/form-fire.py -------------------------------------------------------------------------------- /form-haldar-example8-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/form-haldar-example8-3.py -------------------------------------------------------------------------------- /form-hurtado.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/form-hurtado.py -------------------------------------------------------------------------------- /form-melchers89.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/form-melchers89.py -------------------------------------------------------------------------------- /form-melchers90a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/form-melchers90a.py -------------------------------------------------------------------------------- /form-melchers90b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/form-melchers90b.py -------------------------------------------------------------------------------- /form_SCBA1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/form_SCBA1.py -------------------------------------------------------------------------------- /form_duracon1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/form_duracon1.py -------------------------------------------------------------------------------- /form_exemple6-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/form_exemple6-5.py -------------------------------------------------------------------------------- /form_exemple6-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/form_exemple6-6.py -------------------------------------------------------------------------------- /form_teste_beta2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/form_teste_beta2.py -------------------------------------------------------------------------------- /form_uniform_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/form_uniform_test.py -------------------------------------------------------------------------------- /g1_example2_melchers90.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/g1_example2_melchers90.py -------------------------------------------------------------------------------- /g2_example2_melchers90.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/g2_example2_melchers90.py -------------------------------------------------------------------------------- /g3_example2_melchers90.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/g3_example2_melchers90.py -------------------------------------------------------------------------------- /mc-G2R.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc-G2R.py -------------------------------------------------------------------------------- /mc-Santos_Beck_Stucchi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc-Santos_Beck_Stucchi.py -------------------------------------------------------------------------------- /mc-fire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc-fire.py -------------------------------------------------------------------------------- /mc-hurtado.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc-hurtado.py -------------------------------------------------------------------------------- /mc-melchers89.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc-melchers89.py -------------------------------------------------------------------------------- /mc_buckling1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc_buckling1.py -------------------------------------------------------------------------------- /mc_duracon1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc_duracon1.py -------------------------------------------------------------------------------- /mc_duracon2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc_duracon2.py -------------------------------------------------------------------------------- /mc_example7-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc_example7-3.py -------------------------------------------------------------------------------- /mc_example7-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc_example7-4.py -------------------------------------------------------------------------------- /mc_example7-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc_example7-5.py -------------------------------------------------------------------------------- /mc_example7-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc_example7-6.py -------------------------------------------------------------------------------- /mc_example7-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc_example7-7.py -------------------------------------------------------------------------------- /mc_example7-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc_example7-8.py -------------------------------------------------------------------------------- /mc_example7-9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc_example7-9.py -------------------------------------------------------------------------------- /mc_exemple6-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc_exemple6-4.py -------------------------------------------------------------------------------- /mc_exemple6-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc_exemple6-5.py -------------------------------------------------------------------------------- /mc_exemple6-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc_exemple6-6.py -------------------------------------------------------------------------------- /mc_teste_beta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc_teste_beta.py -------------------------------------------------------------------------------- /mc_teste_beta2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc_teste_beta2.py -------------------------------------------------------------------------------- /mc_teste_gamma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc_teste_gamma.py -------------------------------------------------------------------------------- /mc_teste_gamma2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc_teste_gamma2.py -------------------------------------------------------------------------------- /mc_uniform_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mc_uniform_test.py -------------------------------------------------------------------------------- /mcadapt-cubic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mcadapt-cubic.py -------------------------------------------------------------------------------- /mcis-cubic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/mcis-cubic.py -------------------------------------------------------------------------------- /misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/misc.xml -------------------------------------------------------------------------------- /modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/modules.xml -------------------------------------------------------------------------------- /multig_example1_melchers90.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/multig_example1_melchers90.py -------------------------------------------------------------------------------- /multig_example2_melchers90.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/multig_example2_melchers90.py -------------------------------------------------------------------------------- /multig_example7_beck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/multig_example7_beck.py -------------------------------------------------------------------------------- /pdf/Geração de variáveis correlacionadas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/pdf/Geração de variáveis correlacionadas.pdf -------------------------------------------------------------------------------- /realpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/realpy.py -------------------------------------------------------------------------------- /sapata_corrida.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/sapata_corrida.py -------------------------------------------------------------------------------- /sorm-choi-example4-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/sorm-choi-example4-8.py -------------------------------------------------------------------------------- /sorm-example8-1-haldar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/sorm-example8-1-haldar.py -------------------------------------------------------------------------------- /teste_beta_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/teste_beta_form.py -------------------------------------------------------------------------------- /teste_gamma_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/teste_gamma_form.py -------------------------------------------------------------------------------- /teste_gamma_form2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/teste_gamma_form2.py -------------------------------------------------------------------------------- /teste_geral_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/teste_geral_form.py -------------------------------------------------------------------------------- /teste_geral_mc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/teste_geral_mc.py -------------------------------------------------------------------------------- /uniform_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/uniform_test.py -------------------------------------------------------------------------------- /vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/vcs.xml -------------------------------------------------------------------------------- /workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvreal/Reliability/HEAD/workspace.xml --------------------------------------------------------------------------------