├── .gitignore ├── BifTool.py ├── DotTool.py ├── LICENSE.md ├── LICENSES ├── OverallLicense.txt └── PBNT_License (ElliotCohen) ├── Legacy ├── Help │ ├── QFogLibOfEssays.pdf │ └── QFogManual │ │ ├── data │ │ ├── QFog.css │ │ ├── amps_filter.gif │ │ ├── bi_nd_list.html │ │ ├── bi_nd_probs.html │ │ ├── choose_color.html │ │ ├── color_picker.jpeg │ │ ├── command_key.gif │ │ ├── cu_co_pa_de_se.html │ │ ├── det_wind_cnot.gif │ │ ├── det_wind_cnot.html │ │ ├── det_wind_margie.gif │ │ ├── det_wind_margie.html │ │ ├── det_wind_pshifter.gif │ │ ├── det_wind_pshifter.html │ │ ├── dlog_for_spec_nd.html │ │ ├── do_one.html │ │ ├── drum.gif │ │ ├── example,amps_file.gif │ │ ├── example,e_cases_file.gif │ │ ├── example,nd_sts_file.gif │ │ ├── export.html │ │ ├── filter_amps.html │ │ ├── gen_state_names.gif │ │ ├── gen_state_names.html │ │ ├── ggate.gif │ │ ├── go_forward.html │ │ ├── how_to_write_amps_file.html │ │ ├── how_to_write_ecases_file.html │ │ ├── how_to_write_nd_sts_file.html │ │ ├── illustrate.html │ │ ├── import.html │ │ ├── initial_run_st.html │ │ ├── introduction.html │ │ ├── main_wind.html │ │ ├── memory.html │ │ ├── menu,active_project.gif │ │ ├── menu,change_run_state.gif │ │ ├── menu,edit.gif │ │ ├── menu,export.gif │ │ ├── menu,file.gif │ │ ├── menu,import.gif │ │ ├── menu,run_preps.gif │ │ ├── menu,windows.gif │ │ ├── my_Ecases.txt │ │ ├── my_amps.txt │ │ ├── my_node_states.txt │ │ ├── nd_pi.html │ │ ├── nd_probs.html │ │ ├── net_terminology-abc.html │ │ ├── net_terminology.html │ │ ├── num_of_rows.gif │ │ ├── num_of_rows.html │ │ ├── pal.html │ │ ├── params_SG_mag.gif │ │ ├── params_SG_mag.html │ │ ├── params_beam_spl.gif │ │ ├── params_beam_spl.html │ │ ├── params_det_nd.html │ │ ├── params_pol_rot.gif │ │ ├── params_pol_rot.html │ │ ├── params_polarizer.gif │ │ ├── params_polarizer.html │ │ ├── params_qbit_rot.gif │ │ ├── params_qbit_rot.html │ │ ├── preview.gif │ │ ├── preview.html │ │ ├── refs.html │ │ ├── reorder_icon.gif │ │ ├── reorder_nds.gif │ │ ├── reordering.html │ │ ├── run_def.html │ │ ├── stories.html │ │ ├── support.html │ │ ├── table_of_contents.html │ │ ├── text_files_used.gif │ │ ├── text_files_used.html │ │ ├── tour_draw.html │ │ ├── tour_ecases.gif │ │ ├── tour_intro.html │ │ ├── tour_net.gif │ │ ├── tour_run_with.html │ │ ├── tour_run_without.html │ │ ├── tour_spec_act_sts.html │ │ ├── tour_spec_bi_nds.html │ │ ├── tour_spec_nd_mat.html │ │ ├── tour_spec_st_names.html │ │ ├── undo.html │ │ ├── wind,bi_nd_list.gif │ │ ├── wind,bi_nd_probs.gif │ │ ├── wind,nd_pi.gif │ │ ├── wind,nd_probs.gif │ │ ├── wind,pal.gif │ │ ├── wind,stories.gif │ │ └── windows.html │ │ └── start_here.html └── QFog2-MachO │ └── QFogSource │ ├── Ansi_General │ ├── L_LIST.cp │ ├── L_LIST.h │ ├── L_LIST_INST.cpp │ ├── MATRIX.cp │ ├── MATRIX.h │ ├── MATRIX_INST.cpp │ ├── SET.cpp │ ├── SET.h │ ├── STRINGY.cpp │ ├── STRINGY.h │ ├── VECTOR.cp │ ├── VECTOR.h │ ├── VECTOR_FRIENDS.h │ └── VECTOR_INST.cpp │ ├── Ansi_Nodes │ ├── BEAM_SPL.cpp │ ├── BEAM_SPL.h │ ├── CUSTOM_ND.cpp │ ├── CUSTOM_ND.h │ ├── DET_ND.cpp │ ├── DET_ND.h │ ├── NODE.cpp │ ├── NODE.h │ ├── POLARIZER.cpp │ ├── POLARIZER.h │ ├── POL_ROTATOR.cpp │ ├── POL_ROTATOR.h │ ├── QBIT_ROT.cpp │ ├── QBIT_ROT.h │ ├── SG_MAGNET.cpp │ └── SG_MAGNET.h │ ├── Ansi_Other │ ├── ANSI_UDebugging.h │ ├── ANSI_UException.h │ ├── BI_NODE.cpp │ ├── BI_NODE.h │ ├── DICTIONARY.cpp │ ├── DICTIONARY.h │ ├── EXCEPTIONS.cpp │ ├── EXCEPTIONS.h │ ├── GLOBAL_FUN.cpp │ ├── GLOBAL_FUN.h │ ├── MY_FSTREAMS.cpp │ ├── MY_FSTREAMS.h │ ├── New(Extra).cp │ ├── STRETCH_OR_FOLD.cpp │ ├── STRETCH_OR_FOLD.h │ ├── TRANS_MAT.cpp │ ├── TRANS_MAT.h │ ├── UI_MAP.cpp │ └── UI_MAP.h │ ├── Ansi_QBNet │ ├── QB_NET(go).cpp │ ├── QB_NET.cpp │ └── QB_NET.h │ ├── Headers │ ├── ANSI_QFogDeb-prefix.h │ ├── CommonMach-OPrefix.h │ ├── QFog_constants.h │ └── my_notation.h │ ├── Mac_AmpGens │ ├── C_AMP_GEN.cpp │ ├── C_AMP_GEN.h │ ├── C_BEAM_SPL_AMP_GEN.cpp │ ├── C_BEAM_SPL_AMP_GEN.h │ ├── C_DET_ND_AMP_GEN.cpp │ ├── C_DET_ND_AMP_GEN.h │ ├── C_PHASOR_YZER_AMP_GEN.cpp │ ├── C_PHASOR_YZER_AMP_GEN.h │ ├── C_QBIT_ROT_AMP_GEN.cpp │ ├── C_QBIT_ROT_AMP_GEN.h │ ├── C_SG_MAGNET_AMP_GEN.cpp │ ├── C_SG_MAGNET_AMP_GEN.h │ ├── C_SG_MAGNET_TABLE.cpp │ ├── C_SG_MAGNET_TABLE.h │ ├── TWO_MODE_FUN.cpp │ └── TWO_MODE_FUN.h │ ├── Mac_BiNdProbs │ ├── C_BI_ND_PROBS_MARGIN.cpp │ ├── C_BI_ND_PROBS_MARGIN.h │ ├── C_BI_ND_PROBS_TABLE.cpp │ ├── C_BI_ND_PROBS_TABLE.h │ ├── C_BI_ND_PROBS_WIND.cpp │ ├── C_BI_ND_PROBS_WIND.h │ ├── C_MARGINED_SCROLLER.cpp │ └── C_MARGINED_SCROLLER.h │ ├── Mac_BiNds │ ├── C_BI_ND_LBOX.cpp │ ├── C_BI_ND_LBOX.h │ ├── C_BI_ND_WIND.cpp │ └── C_BI_ND_WIND.h │ ├── Mac_MainView │ ├── C_ARROW.cpp │ ├── C_ARROW.h │ ├── C_ARROW_DRAWER.cpp │ ├── C_ARROW_DRAWER.h │ ├── C_EFIELD_PASTE_ATMENT.cpp │ ├── C_EFIELD_PASTE_ATMENT.h │ ├── C_MAIN_VIEW.cpp │ ├── C_MAIN_VIEW.h │ ├── C_MVIEW_ACTIONS.cpp │ ├── C_MVIEW_ACTIONS.h │ ├── C_ND_EFIELD.cpp │ ├── C_ND_EFIELD.h │ ├── C_PORT_RELATED.cpp │ └── C_PORT_RELATED.h │ ├── Mac_NdProbs │ ├── C_ND_PROBS_TABLE.cpp │ ├── C_ND_PROBS_TABLE.h │ ├── C_ND_PROBS_WIND.cpp │ └── C_ND_PROBS_WIND.h │ ├── Mac_Other │ ├── C_ACTION_FLAGS.cpp │ ├── C_ACTION_FLAGS.h │ ├── C_HOST_VIEW.cpp │ ├── C_HOST_VIEW.h │ ├── C_KEYS.cpp │ ├── C_KEYS.h │ ├── C_PROJECT_MENU.cpp │ ├── C_PROJECT_MENU.h │ ├── C_WIND_BDS_RECO.cpp │ ├── C_WIND_BDS_RECO.h │ ├── Mac_EditTable │ │ ├── .DS_Store │ │ ├── C_CELL_EDITOR.cpp │ │ ├── C_CELL_EDITOR.h │ │ ├── C_CELL_EDITOR_UNDOER.cpp │ │ ├── C_CELL_EDITOR_UNDOER.h │ │ ├── C_EDIT_TABLE.cpp │ │ ├── C_EDIT_TABLE.h │ │ ├── C_ETABLE_ACTIONS.cpp │ │ ├── C_ETABLE_ACTIONS.h │ │ ├── C_ETABLE_MULTI_SEL.cpp │ │ ├── C_ETABLE_MULTI_SEL.h │ │ ├── C_SPEED_LIM_SCROLLER.cpp │ │ ├── C_SPEED_LIM_SCROLLER.h │ │ ├── C_SUB_MATRIX.cpp │ │ └── C_SUB_MATRIX.h │ ├── StCPTstate.cpp │ ├── StCPTstate.h │ ├── UModalDialogsPlus.cp │ ├── UModalDialogsPlus.h │ ├── UTextMenus.cpp │ └── UTextMenus.h │ ├── Mac_Palette │ ├── C_COLORS.cpp │ ├── C_COLORS.h │ ├── C_COLOR_SWATCH.cpp │ ├── C_COLOR_SWATCH.h │ ├── C_ICON_TABLE.cpp │ ├── C_ICON_TABLE.h │ ├── C_PALETTE.cpp │ └── C_PALETTE.h │ ├── Mac_PiWind │ ├── C_PI_AMPS_TABLE.cpp │ ├── C_PI_AMPS_TABLE.h │ ├── C_PI_ND_EFIELD.cpp │ ├── C_PI_ND_EFIELD.h │ ├── C_PI_ND_POPUP.cpp │ ├── C_PI_ND_POPUP.h │ ├── C_PI_PARENTS_TABLE.cpp │ ├── C_PI_PARENTS_TABLE.h │ ├── C_PI_PA_ST_POPUP.cpp │ ├── C_PI_PA_ST_POPUP.h │ ├── C_PI_WIND.cpp │ └── C_PI_WIND.h │ ├── Mac_QBNetAndNode │ ├── NODE(mac).cpp │ └── QB_NET(mac).cpp │ ├── Mac_Reorder │ ├── C_NET_QTABLE.cpp │ ├── C_NET_QTABLE.h │ ├── C_QTABLE.cpp │ └── C_QTABLE.h │ ├── Mac_Stories │ ├── C_ANTHOLOGY_ITEM.cpp │ ├── C_ANTHOLOGY_ITEM.h │ ├── C_STORIES_WIND.cpp │ └── C_STORIES_WIND.h │ ├── Mac_Top │ ├── C_APP.cpp │ ├── C_APP.h │ ├── C_DOC.cpp │ ├── C_DOC.h │ ├── C_TOP_PTRS.cpp │ └── C_TOP_PTRS.h │ ├── Resources │ ├── AppPropertyList.plc │ ├── PP Debug Support.rsrc │ ├── PP DebugAlerts.rsrc │ ├── QFog.icns │ ├── QNet.icns │ ├── Quantum_Fog.rsrc │ ├── StandardInfoPlistKeys.h │ ├── drawings.cwk │ └── qbit rot icon(mdraw) │ └── main.cpp ├── MyExceptions.py ├── PBNT ├── Distribution.py ├── Graph.py ├── GraphExceptions.py ├── Inference.py ├── Node.py ├── Utilities │ ├── GraphUtilities.py │ ├── Utilities.py │ └── __init__.py └── __init__.py ├── QFog-legacy-history.md ├── README.md ├── Utilities.py ├── abbreviations.md ├── examples_cbnets ├── HuaDar.bif ├── HuaDar.dot ├── HuaDar.py ├── HuaDar1.bif ├── HuaDarNetica.neta ├── HuaDar_bnet.gif ├── HuaDar_jtree.gif ├── HuaDar_moral.gif ├── HuaDar_triangulated.gif ├── Monty_Hall.bif ├── Monty_Hall.dot ├── SimpleTree7nd.py ├── WetGrass.bif ├── WetGrass.dot ├── WetGrass.py ├── WetGrassNetica.neta ├── WetGrass_bnt.bif ├── WetGrass_bnt.dot ├── WetGrass_test1.dot ├── WetGrass_test2.dot ├── __init__.py ├── alarm.bif ├── alarm.dot ├── asia.bif ├── asia.dot ├── asia_.bif ├── asia_.dot ├── asia_bnt.bif ├── asia_bnt.dot ├── asia_copy.bif ├── barley.bif ├── barley.dot ├── bnet1.dot ├── bnet2.dot ├── cancer.bif ├── cancer.dot ├── child.bif ├── child.dot ├── dag1.dot ├── dag2.dot ├── earthquake.bif ├── earthquake.dot ├── earthquake_bnt.bif ├── earthquake_bnt.dot ├── graph1.dot ├── graph2.dot ├── hailfinder.bif ├── hailfinder.dot ├── insurance.bif ├── insurance.dot ├── mildew.bif ├── mildew.dot ├── sachs.bif ├── sachs.dot ├── student.bif ├── student.dot ├── survey.bif ├── survey.dot ├── water.bif └── water.dot ├── examples_qbnets ├── QuWetGrass.bif ├── QuWetGrass.dot ├── QuWetGrass.py ├── QuWetGrass1.bif ├── YoungDoubleSlit.bif ├── YoungDoubleSlit.dot ├── YoungDoubleSlit_test.bif └── __init__.py ├── graphs ├── BayesNet.py ├── Dag.py ├── Graph.py ├── JoinTree.py ├── MoralGraph.py ├── Star.py ├── TriangulatedGraph.py └── __init__.py ├── inference ├── EnumerationEngine.py ├── InferenceEngine.py ├── JoinTreeEngine.py ├── MCMC_Engine.py └── __init__.py ├── jupyter-notebooks ├── Dekant-talk-at-Meetup-Dec-19-2016 │ ├── Demo_Notebook-Master.ipynb │ ├── Least_action_principle.svg │ ├── Richard-Feynman.jpg │ ├── Two-Slit_Experiment_Approximation.svg │ ├── X-Mess_Monty_Hall.png │ └── still_interference_dots_smear_boxes.jpg ├── JupyterREADME.md ├── Octave-magic-for-dummies.ipynb ├── Rmagic-for-dummies.ipynb ├── bnlearn-qfog-comparison │ ├── net-learning-master.ipynb │ ├── param-learning-template-WetGrass.ipynb │ ├── param-learning-template-asia_.ipynb │ ├── param-learning-template-earthquake.ipynb │ ├── param-learning-template.ipynb │ ├── struc-learning-template-WetGrass.ipynb │ ├── struc-learning-template-asia_.ipynb │ ├── struc-learning-template-earthquake.ipynb │ └── struc-learning-template.ipynb ├── bnt-examples │ ├── bnt-basic-usage-oct-kernel.ipynb │ ├── bnt-biftool.ipynb │ ├── bnt-examples-included-in-distro.ipynb │ ├── bnt-read-write-a-bif.ipynb │ ├── octave-kernel-okay.ipynb │ └── octavemagic-bug.ipynb ├── bnt-qfog-comparison │ ├── inference-master.ipynb │ ├── inference-template-WetGrass.ipynb │ ├── inference-template-asia_.ipynb │ ├── inference-template-earthquake.ipynb │ └── inference-template.ipynb ├── cbnets_inference_gui │ ├── Asia.ipynb │ ├── WetGrass.ipynb │ └── util_widgets.py ├── gallery-cbnets-display.ipynb ├── gallery-cbnets.ipynb ├── inference_via_ext_software │ ├── ModelMaker.py │ ├── ModelMaker_Edward.py │ ├── ModelMaker_PyMC3.py │ ├── WetGrass_inf_edward.ipynb │ ├── WetGrass_inf_pymc3.ipynb │ ├── WetGrass_param_learn_KLqp_edward.ipynb │ ├── WetGrass_param_learn_MC_edward.ipynb │ ├── WetGrass_param_learn_MC_pymc3.ipynb │ ├── WetGrass_param_learn_VA_pymc3.ipynb │ └── model_examples_c │ │ ├── WetGrass_inf_obs_CW_pymc3.py │ │ ├── WetGrass_inf_obs_all_pymc3.py │ │ ├── WetGrass_inf_obs_none_edward.py │ │ ├── WetGrass_par_MC_obs_CW_edward.py │ │ ├── WetGrass_par_VA_obs_CRW_edward.py │ │ ├── WetGrass_par_VA_obs_CW_edward.py │ │ ├── WetGrass_par_obs_CRW_pymc3.py │ │ ├── WetGrass_par_obs_CW_pymc3.py │ │ └── __init__.py ├── nbrun-example │ ├── example-master-notebook.ipynb │ ├── example-template-notebook-out_0_a.ipynb │ ├── example-template-notebook-out_0_b.ipynb │ ├── example-template-notebook-out_1_a.ipynb │ ├── example-template-notebook-out_1_b.ipynb │ └── example-template-notebook.ipynb ├── nbrun.py ├── plotting-density-matrix.ipynb ├── pnl-examples │ └── pnl-documentation.ipynb └── pymc2&3-pystan-comparison │ ├── References.ipynb │ ├── linear-regression.ipynb │ ├── mean-and-sd-of-normal.ipynb │ └── pymc2-examples-from-sta-663-course-at-duke-u.ipynb ├── learning ├── AracneLner.py ├── ChowLiuTreeLner.py ├── DataBinner.py ├── HC_MMHC_rr_Lner.py ├── HC_MMHC_tabu_Lner.py ├── HC_RandRestartLner.py ├── HC_TabuLner.py ├── HillClimbingLner.py ├── MB_BasedLner.py ├── MB_GrowShrinkLner.py ├── MB_IAMB_Lner.py ├── MB_MMPC_Lner.py ├── MB_fast_IAMB_Lner.py ├── MB_hitonPC_Lner.py ├── MB_inter_IAMB_Lner.py ├── MB_lambda_IAMB_Lner.py ├── NaiveBayesLner.py ├── NetParamsLner.py ├── NetStrucLner.py ├── NetStrucScorer.py ├── RandGen_NetParams.py ├── TreeAugNaiveBayesLner.py ├── __init__.py ├── training_data_c │ ├── SimpleTree7nd.csv │ ├── WetGrass.csv │ └── earthquake.csv └── training_data_q │ ├── WetGrass_degs.csv │ └── WetGrass_sts.csv ├── nodes ├── BayesNode.py ├── Clique.py ├── DirectedNode.py ├── Node.py ├── Sepset.py └── __init__.py ├── potentials ├── DensityMatrix.py ├── DiscreteCondPot.py ├── DiscreteUniPot.py ├── Potential.py └── __init__.py ├── prefabricated_nodes ├── BeamSplitter.py ├── CNot.py ├── Marginalizer.py ├── PhaseShifter.py ├── PolarizationRot.py ├── Polarizer.py ├── QubitRot.py └── __init__.py └── shannon_info_theory ├── DataEntropy.py └── Entropy.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/.gitignore -------------------------------------------------------------------------------- /BifTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/BifTool.py -------------------------------------------------------------------------------- /DotTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/DotTool.py -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSES/OverallLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/LICENSES/OverallLicense.txt -------------------------------------------------------------------------------- /LICENSES/PBNT_License (ElliotCohen): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/LICENSES/PBNT_License (ElliotCohen) -------------------------------------------------------------------------------- /Legacy/Help/QFogLibOfEssays.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogLibOfEssays.pdf -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/QFog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/QFog.css -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/amps_filter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/amps_filter.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/bi_nd_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/bi_nd_list.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/bi_nd_probs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/bi_nd_probs.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/choose_color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/choose_color.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/color_picker.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/color_picker.jpeg -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/command_key.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/command_key.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/cu_co_pa_de_se.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/cu_co_pa_de_se.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/det_wind_cnot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/det_wind_cnot.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/det_wind_cnot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/det_wind_cnot.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/det_wind_margie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/det_wind_margie.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/det_wind_margie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/det_wind_margie.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/det_wind_pshifter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/det_wind_pshifter.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/det_wind_pshifter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/det_wind_pshifter.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/dlog_for_spec_nd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/dlog_for_spec_nd.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/do_one.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/do_one.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/drum.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/drum.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/example,amps_file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/example,amps_file.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/example,e_cases_file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/example,e_cases_file.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/example,nd_sts_file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/example,nd_sts_file.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/export.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/filter_amps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/filter_amps.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/gen_state_names.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/gen_state_names.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/gen_state_names.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/gen_state_names.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/ggate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/ggate.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/go_forward.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/go_forward.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/how_to_write_amps_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/how_to_write_amps_file.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/how_to_write_ecases_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/how_to_write_ecases_file.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/how_to_write_nd_sts_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/how_to_write_nd_sts_file.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/illustrate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/illustrate.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/import.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/initial_run_st.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/initial_run_st.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/introduction.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/main_wind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/main_wind.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/memory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/memory.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/menu,active_project.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/menu,active_project.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/menu,change_run_state.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/menu,change_run_state.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/menu,edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/menu,edit.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/menu,export.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/menu,export.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/menu,file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/menu,file.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/menu,import.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/menu,import.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/menu,run_preps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/menu,run_preps.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/menu,windows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/menu,windows.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/my_Ecases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/my_Ecases.txt -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/my_amps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/my_amps.txt -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/my_node_states.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/my_node_states.txt -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/nd_pi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/nd_pi.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/nd_probs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/nd_probs.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/net_terminology-abc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/net_terminology-abc.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/net_terminology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/net_terminology.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/num_of_rows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/num_of_rows.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/num_of_rows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/num_of_rows.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/pal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/pal.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/params_SG_mag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/params_SG_mag.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/params_SG_mag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/params_SG_mag.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/params_beam_spl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/params_beam_spl.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/params_beam_spl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/params_beam_spl.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/params_det_nd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/params_det_nd.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/params_pol_rot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/params_pol_rot.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/params_pol_rot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/params_pol_rot.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/params_polarizer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/params_polarizer.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/params_polarizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/params_polarizer.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/params_qbit_rot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/params_qbit_rot.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/params_qbit_rot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/params_qbit_rot.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/preview.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/preview.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/refs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/refs.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/reorder_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/reorder_icon.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/reorder_nds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/reorder_nds.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/reordering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/reordering.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/run_def.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/run_def.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/stories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/stories.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/support.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/table_of_contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/table_of_contents.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/text_files_used.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/text_files_used.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/text_files_used.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/text_files_used.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/tour_draw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/tour_draw.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/tour_ecases.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/tour_ecases.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/tour_intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/tour_intro.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/tour_net.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/tour_net.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/tour_run_with.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/tour_run_with.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/tour_run_without.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/tour_run_without.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/tour_spec_act_sts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/tour_spec_act_sts.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/tour_spec_bi_nds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/tour_spec_bi_nds.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/tour_spec_nd_mat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/tour_spec_nd_mat.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/tour_spec_st_names.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/tour_spec_st_names.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/undo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/undo.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/wind,bi_nd_list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/wind,bi_nd_list.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/wind,bi_nd_probs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/wind,bi_nd_probs.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/wind,nd_pi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/wind,nd_pi.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/wind,nd_probs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/wind,nd_probs.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/wind,pal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/wind,pal.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/wind,stories.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/wind,stories.gif -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/data/windows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/data/windows.html -------------------------------------------------------------------------------- /Legacy/Help/QFogManual/start_here.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/Help/QFogManual/start_here.html -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_General/L_LIST.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_General/L_LIST.cp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_General/L_LIST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_General/L_LIST.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_General/L_LIST_INST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_General/L_LIST_INST.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_General/MATRIX.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_General/MATRIX.cp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_General/MATRIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_General/MATRIX.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_General/MATRIX_INST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_General/MATRIX_INST.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_General/SET.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_General/SET.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_General/SET.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_General/SET.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_General/STRINGY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_General/STRINGY.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_General/STRINGY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_General/STRINGY.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_General/VECTOR.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_General/VECTOR.cp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_General/VECTOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_General/VECTOR.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_General/VECTOR_FRIENDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_General/VECTOR_FRIENDS.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_General/VECTOR_INST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_General/VECTOR_INST.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/BEAM_SPL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/BEAM_SPL.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/BEAM_SPL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/BEAM_SPL.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/CUSTOM_ND.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/CUSTOM_ND.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/CUSTOM_ND.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/CUSTOM_ND.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/DET_ND.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/DET_ND.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/DET_ND.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/DET_ND.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/NODE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/NODE.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/NODE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/NODE.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/POLARIZER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/POLARIZER.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/POLARIZER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/POLARIZER.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/POL_ROTATOR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/POL_ROTATOR.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/POL_ROTATOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/POL_ROTATOR.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/QBIT_ROT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/QBIT_ROT.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/QBIT_ROT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/QBIT_ROT.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/SG_MAGNET.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/SG_MAGNET.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/SG_MAGNET.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Nodes/SG_MAGNET.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Other/ANSI_UDebugging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Other/ANSI_UDebugging.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Other/ANSI_UException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Other/ANSI_UException.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Other/BI_NODE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Other/BI_NODE.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Other/BI_NODE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Other/BI_NODE.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Other/DICTIONARY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Other/DICTIONARY.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Other/DICTIONARY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Other/DICTIONARY.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Other/EXCEPTIONS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Other/EXCEPTIONS.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Other/EXCEPTIONS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Other/EXCEPTIONS.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Other/GLOBAL_FUN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Other/GLOBAL_FUN.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Other/GLOBAL_FUN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Other/GLOBAL_FUN.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Other/MY_FSTREAMS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Other/MY_FSTREAMS.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Other/MY_FSTREAMS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Other/MY_FSTREAMS.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Other/New(Extra).cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Other/New(Extra).cp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Other/STRETCH_OR_FOLD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Other/STRETCH_OR_FOLD.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Other/STRETCH_OR_FOLD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Other/STRETCH_OR_FOLD.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Other/TRANS_MAT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Other/TRANS_MAT.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Other/TRANS_MAT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Other/TRANS_MAT.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Other/UI_MAP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Other/UI_MAP.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_Other/UI_MAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_Other/UI_MAP.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_QBNet/QB_NET(go).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_QBNet/QB_NET(go).cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_QBNet/QB_NET.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_QBNet/QB_NET.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Ansi_QBNet/QB_NET.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Ansi_QBNet/QB_NET.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Headers/ANSI_QFogDeb-prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Headers/ANSI_QFogDeb-prefix.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Headers/CommonMach-OPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Headers/CommonMach-OPrefix.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Headers/QFog_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Headers/QFog_constants.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Headers/my_notation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Headers/my_notation.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_AMP_GEN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_AMP_GEN.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_AMP_GEN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_AMP_GEN.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_BEAM_SPL_AMP_GEN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_BEAM_SPL_AMP_GEN.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_BEAM_SPL_AMP_GEN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_BEAM_SPL_AMP_GEN.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_DET_ND_AMP_GEN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_DET_ND_AMP_GEN.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_DET_ND_AMP_GEN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_DET_ND_AMP_GEN.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_PHASOR_YZER_AMP_GEN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_PHASOR_YZER_AMP_GEN.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_PHASOR_YZER_AMP_GEN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_PHASOR_YZER_AMP_GEN.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_QBIT_ROT_AMP_GEN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_QBIT_ROT_AMP_GEN.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_QBIT_ROT_AMP_GEN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_QBIT_ROT_AMP_GEN.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_SG_MAGNET_AMP_GEN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_SG_MAGNET_AMP_GEN.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_SG_MAGNET_AMP_GEN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_SG_MAGNET_AMP_GEN.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_SG_MAGNET_TABLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_SG_MAGNET_TABLE.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_SG_MAGNET_TABLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/C_SG_MAGNET_TABLE.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/TWO_MODE_FUN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/TWO_MODE_FUN.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/TWO_MODE_FUN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_AmpGens/TWO_MODE_FUN.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_BiNdProbs/C_BI_ND_PROBS_MARGIN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_BiNdProbs/C_BI_ND_PROBS_MARGIN.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_BiNdProbs/C_BI_ND_PROBS_MARGIN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_BiNdProbs/C_BI_ND_PROBS_MARGIN.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_BiNdProbs/C_BI_ND_PROBS_TABLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_BiNdProbs/C_BI_ND_PROBS_TABLE.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_BiNdProbs/C_BI_ND_PROBS_TABLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_BiNdProbs/C_BI_ND_PROBS_TABLE.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_BiNdProbs/C_BI_ND_PROBS_WIND.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_BiNdProbs/C_BI_ND_PROBS_WIND.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_BiNdProbs/C_BI_ND_PROBS_WIND.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_BiNdProbs/C_BI_ND_PROBS_WIND.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_BiNdProbs/C_MARGINED_SCROLLER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_BiNdProbs/C_MARGINED_SCROLLER.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_BiNdProbs/C_MARGINED_SCROLLER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_BiNdProbs/C_MARGINED_SCROLLER.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_BiNds/C_BI_ND_LBOX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_BiNds/C_BI_ND_LBOX.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_BiNds/C_BI_ND_LBOX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_BiNds/C_BI_ND_LBOX.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_BiNds/C_BI_ND_WIND.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_BiNds/C_BI_ND_WIND.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_BiNds/C_BI_ND_WIND.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_BiNds/C_BI_ND_WIND.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_ARROW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_ARROW.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_ARROW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_ARROW.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_ARROW_DRAWER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_ARROW_DRAWER.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_ARROW_DRAWER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_ARROW_DRAWER.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_EFIELD_PASTE_ATMENT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_EFIELD_PASTE_ATMENT.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_EFIELD_PASTE_ATMENT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_EFIELD_PASTE_ATMENT.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_MAIN_VIEW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_MAIN_VIEW.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_MAIN_VIEW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_MAIN_VIEW.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_MVIEW_ACTIONS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_MVIEW_ACTIONS.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_MVIEW_ACTIONS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_MVIEW_ACTIONS.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_ND_EFIELD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_ND_EFIELD.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_ND_EFIELD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_ND_EFIELD.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_PORT_RELATED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_PORT_RELATED.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_PORT_RELATED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_MainView/C_PORT_RELATED.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_NdProbs/C_ND_PROBS_TABLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_NdProbs/C_ND_PROBS_TABLE.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_NdProbs/C_ND_PROBS_TABLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_NdProbs/C_ND_PROBS_TABLE.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_NdProbs/C_ND_PROBS_WIND.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_NdProbs/C_ND_PROBS_WIND.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_NdProbs/C_ND_PROBS_WIND.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_NdProbs/C_ND_PROBS_WIND.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/C_ACTION_FLAGS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/C_ACTION_FLAGS.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/C_ACTION_FLAGS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/C_ACTION_FLAGS.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/C_HOST_VIEW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/C_HOST_VIEW.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/C_HOST_VIEW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/C_HOST_VIEW.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/C_KEYS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/C_KEYS.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/C_KEYS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/C_KEYS.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/C_PROJECT_MENU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/C_PROJECT_MENU.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/C_PROJECT_MENU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/C_PROJECT_MENU.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/C_WIND_BDS_RECO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/C_WIND_BDS_RECO.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/C_WIND_BDS_RECO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/C_WIND_BDS_RECO.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/.DS_Store -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_CELL_EDITOR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_CELL_EDITOR.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_CELL_EDITOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_CELL_EDITOR.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_CELL_EDITOR_UNDOER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_CELL_EDITOR_UNDOER.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_CELL_EDITOR_UNDOER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_CELL_EDITOR_UNDOER.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_EDIT_TABLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_EDIT_TABLE.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_EDIT_TABLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_EDIT_TABLE.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_ETABLE_ACTIONS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_ETABLE_ACTIONS.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_ETABLE_ACTIONS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_ETABLE_ACTIONS.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_ETABLE_MULTI_SEL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_ETABLE_MULTI_SEL.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_ETABLE_MULTI_SEL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_ETABLE_MULTI_SEL.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_SPEED_LIM_SCROLLER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_SPEED_LIM_SCROLLER.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_SPEED_LIM_SCROLLER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_SPEED_LIM_SCROLLER.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_SUB_MATRIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_SUB_MATRIX.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_SUB_MATRIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/Mac_EditTable/C_SUB_MATRIX.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/StCPTstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/StCPTstate.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/StCPTstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/StCPTstate.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/UModalDialogsPlus.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/UModalDialogsPlus.cp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/UModalDialogsPlus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/UModalDialogsPlus.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/UTextMenus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/UTextMenus.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Other/UTextMenus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Other/UTextMenus.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Palette/C_COLORS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Palette/C_COLORS.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Palette/C_COLORS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Palette/C_COLORS.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Palette/C_COLOR_SWATCH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Palette/C_COLOR_SWATCH.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Palette/C_COLOR_SWATCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Palette/C_COLOR_SWATCH.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Palette/C_ICON_TABLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Palette/C_ICON_TABLE.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Palette/C_ICON_TABLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Palette/C_ICON_TABLE.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Palette/C_PALETTE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Palette/C_PALETTE.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Palette/C_PALETTE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Palette/C_PALETTE.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_AMPS_TABLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_AMPS_TABLE.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_AMPS_TABLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_AMPS_TABLE.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_ND_EFIELD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_ND_EFIELD.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_ND_EFIELD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_ND_EFIELD.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_ND_POPUP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_ND_POPUP.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_ND_POPUP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_ND_POPUP.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_PARENTS_TABLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_PARENTS_TABLE.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_PARENTS_TABLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_PARENTS_TABLE.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_PA_ST_POPUP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_PA_ST_POPUP.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_PA_ST_POPUP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_PA_ST_POPUP.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_WIND.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_WIND.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_WIND.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_PiWind/C_PI_WIND.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_QBNetAndNode/NODE(mac).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_QBNetAndNode/NODE(mac).cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_QBNetAndNode/QB_NET(mac).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_QBNetAndNode/QB_NET(mac).cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Reorder/C_NET_QTABLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Reorder/C_NET_QTABLE.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Reorder/C_NET_QTABLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Reorder/C_NET_QTABLE.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Reorder/C_QTABLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Reorder/C_QTABLE.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Reorder/C_QTABLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Reorder/C_QTABLE.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Stories/C_ANTHOLOGY_ITEM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Stories/C_ANTHOLOGY_ITEM.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Stories/C_ANTHOLOGY_ITEM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Stories/C_ANTHOLOGY_ITEM.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Stories/C_STORIES_WIND.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Stories/C_STORIES_WIND.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Stories/C_STORIES_WIND.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Stories/C_STORIES_WIND.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Top/C_APP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Top/C_APP.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Top/C_APP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Top/C_APP.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Top/C_DOC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Top/C_DOC.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Top/C_DOC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Top/C_DOC.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Top/C_TOP_PTRS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Top/C_TOP_PTRS.cpp -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Mac_Top/C_TOP_PTRS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Mac_Top/C_TOP_PTRS.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Resources/AppPropertyList.plc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Resources/AppPropertyList.plc -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Resources/PP Debug Support.rsrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Resources/PP DebugAlerts.rsrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Resources/QFog.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Resources/QFog.icns -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Resources/QNet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Resources/QNet.icns -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Resources/Quantum_Fog.rsrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Resources/StandardInfoPlistKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Resources/StandardInfoPlistKeys.h -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Resources/drawings.cwk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Resources/drawings.cwk -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/Resources/qbit rot icon(mdraw): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/Resources/qbit rot icon(mdraw) -------------------------------------------------------------------------------- /Legacy/QFog2-MachO/QFogSource/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Legacy/QFog2-MachO/QFogSource/main.cpp -------------------------------------------------------------------------------- /MyExceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/MyExceptions.py -------------------------------------------------------------------------------- /PBNT/Distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/PBNT/Distribution.py -------------------------------------------------------------------------------- /PBNT/Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/PBNT/Graph.py -------------------------------------------------------------------------------- /PBNT/GraphExceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/PBNT/GraphExceptions.py -------------------------------------------------------------------------------- /PBNT/Inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/PBNT/Inference.py -------------------------------------------------------------------------------- /PBNT/Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/PBNT/Node.py -------------------------------------------------------------------------------- /PBNT/Utilities/GraphUtilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/PBNT/Utilities/GraphUtilities.py -------------------------------------------------------------------------------- /PBNT/Utilities/Utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/PBNT/Utilities/Utilities.py -------------------------------------------------------------------------------- /PBNT/Utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/PBNT/Utilities/__init__.py -------------------------------------------------------------------------------- /PBNT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/PBNT/__init__.py -------------------------------------------------------------------------------- /QFog-legacy-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/QFog-legacy-history.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/README.md -------------------------------------------------------------------------------- /Utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/Utilities.py -------------------------------------------------------------------------------- /abbreviations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/abbreviations.md -------------------------------------------------------------------------------- /examples_cbnets/HuaDar.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/HuaDar.bif -------------------------------------------------------------------------------- /examples_cbnets/HuaDar.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/HuaDar.dot -------------------------------------------------------------------------------- /examples_cbnets/HuaDar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/HuaDar.py -------------------------------------------------------------------------------- /examples_cbnets/HuaDar1.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/HuaDar1.bif -------------------------------------------------------------------------------- /examples_cbnets/HuaDarNetica.neta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/HuaDarNetica.neta -------------------------------------------------------------------------------- /examples_cbnets/HuaDar_bnet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/HuaDar_bnet.gif -------------------------------------------------------------------------------- /examples_cbnets/HuaDar_jtree.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/HuaDar_jtree.gif -------------------------------------------------------------------------------- /examples_cbnets/HuaDar_moral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/HuaDar_moral.gif -------------------------------------------------------------------------------- /examples_cbnets/HuaDar_triangulated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/HuaDar_triangulated.gif -------------------------------------------------------------------------------- /examples_cbnets/Monty_Hall.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/Monty_Hall.bif -------------------------------------------------------------------------------- /examples_cbnets/Monty_Hall.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/Monty_Hall.dot -------------------------------------------------------------------------------- /examples_cbnets/SimpleTree7nd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/SimpleTree7nd.py -------------------------------------------------------------------------------- /examples_cbnets/WetGrass.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/WetGrass.bif -------------------------------------------------------------------------------- /examples_cbnets/WetGrass.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/WetGrass.dot -------------------------------------------------------------------------------- /examples_cbnets/WetGrass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/WetGrass.py -------------------------------------------------------------------------------- /examples_cbnets/WetGrassNetica.neta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/WetGrassNetica.neta -------------------------------------------------------------------------------- /examples_cbnets/WetGrass_bnt.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/WetGrass_bnt.bif -------------------------------------------------------------------------------- /examples_cbnets/WetGrass_bnt.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/WetGrass_bnt.dot -------------------------------------------------------------------------------- /examples_cbnets/WetGrass_test1.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/WetGrass_test1.dot -------------------------------------------------------------------------------- /examples_cbnets/WetGrass_test2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/WetGrass_test2.dot -------------------------------------------------------------------------------- /examples_cbnets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples_cbnets/alarm.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/alarm.bif -------------------------------------------------------------------------------- /examples_cbnets/alarm.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/alarm.dot -------------------------------------------------------------------------------- /examples_cbnets/asia.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/asia.bif -------------------------------------------------------------------------------- /examples_cbnets/asia.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/asia.dot -------------------------------------------------------------------------------- /examples_cbnets/asia_.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/asia_.bif -------------------------------------------------------------------------------- /examples_cbnets/asia_.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/asia_.dot -------------------------------------------------------------------------------- /examples_cbnets/asia_bnt.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/asia_bnt.bif -------------------------------------------------------------------------------- /examples_cbnets/asia_bnt.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/asia_bnt.dot -------------------------------------------------------------------------------- /examples_cbnets/asia_copy.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/asia_copy.bif -------------------------------------------------------------------------------- /examples_cbnets/barley.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/barley.bif -------------------------------------------------------------------------------- /examples_cbnets/barley.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/barley.dot -------------------------------------------------------------------------------- /examples_cbnets/bnet1.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/bnet1.dot -------------------------------------------------------------------------------- /examples_cbnets/bnet2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/bnet2.dot -------------------------------------------------------------------------------- /examples_cbnets/cancer.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/cancer.bif -------------------------------------------------------------------------------- /examples_cbnets/cancer.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/cancer.dot -------------------------------------------------------------------------------- /examples_cbnets/child.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/child.bif -------------------------------------------------------------------------------- /examples_cbnets/child.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/child.dot -------------------------------------------------------------------------------- /examples_cbnets/dag1.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/dag1.dot -------------------------------------------------------------------------------- /examples_cbnets/dag2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/dag2.dot -------------------------------------------------------------------------------- /examples_cbnets/earthquake.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/earthquake.bif -------------------------------------------------------------------------------- /examples_cbnets/earthquake.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/earthquake.dot -------------------------------------------------------------------------------- /examples_cbnets/earthquake_bnt.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/earthquake_bnt.bif -------------------------------------------------------------------------------- /examples_cbnets/earthquake_bnt.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/earthquake_bnt.dot -------------------------------------------------------------------------------- /examples_cbnets/graph1.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/graph1.dot -------------------------------------------------------------------------------- /examples_cbnets/graph2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/graph2.dot -------------------------------------------------------------------------------- /examples_cbnets/hailfinder.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/hailfinder.bif -------------------------------------------------------------------------------- /examples_cbnets/hailfinder.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/hailfinder.dot -------------------------------------------------------------------------------- /examples_cbnets/insurance.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/insurance.bif -------------------------------------------------------------------------------- /examples_cbnets/insurance.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/insurance.dot -------------------------------------------------------------------------------- /examples_cbnets/mildew.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/mildew.bif -------------------------------------------------------------------------------- /examples_cbnets/mildew.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/mildew.dot -------------------------------------------------------------------------------- /examples_cbnets/sachs.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/sachs.bif -------------------------------------------------------------------------------- /examples_cbnets/sachs.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/sachs.dot -------------------------------------------------------------------------------- /examples_cbnets/student.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/student.bif -------------------------------------------------------------------------------- /examples_cbnets/student.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/student.dot -------------------------------------------------------------------------------- /examples_cbnets/survey.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/survey.bif -------------------------------------------------------------------------------- /examples_cbnets/survey.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/survey.dot -------------------------------------------------------------------------------- /examples_cbnets/water.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/water.bif -------------------------------------------------------------------------------- /examples_cbnets/water.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_cbnets/water.dot -------------------------------------------------------------------------------- /examples_qbnets/QuWetGrass.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_qbnets/QuWetGrass.bif -------------------------------------------------------------------------------- /examples_qbnets/QuWetGrass.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_qbnets/QuWetGrass.dot -------------------------------------------------------------------------------- /examples_qbnets/QuWetGrass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_qbnets/QuWetGrass.py -------------------------------------------------------------------------------- /examples_qbnets/QuWetGrass1.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_qbnets/QuWetGrass1.bif -------------------------------------------------------------------------------- /examples_qbnets/YoungDoubleSlit.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_qbnets/YoungDoubleSlit.bif -------------------------------------------------------------------------------- /examples_qbnets/YoungDoubleSlit.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_qbnets/YoungDoubleSlit.dot -------------------------------------------------------------------------------- /examples_qbnets/YoungDoubleSlit_test.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/examples_qbnets/YoungDoubleSlit_test.bif -------------------------------------------------------------------------------- /examples_qbnets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphs/BayesNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/graphs/BayesNet.py -------------------------------------------------------------------------------- /graphs/Dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/graphs/Dag.py -------------------------------------------------------------------------------- /graphs/Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/graphs/Graph.py -------------------------------------------------------------------------------- /graphs/JoinTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/graphs/JoinTree.py -------------------------------------------------------------------------------- /graphs/MoralGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/graphs/MoralGraph.py -------------------------------------------------------------------------------- /graphs/Star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/graphs/Star.py -------------------------------------------------------------------------------- /graphs/TriangulatedGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/graphs/TriangulatedGraph.py -------------------------------------------------------------------------------- /graphs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inference/EnumerationEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/inference/EnumerationEngine.py -------------------------------------------------------------------------------- /inference/InferenceEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/inference/InferenceEngine.py -------------------------------------------------------------------------------- /inference/JoinTreeEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/inference/JoinTreeEngine.py -------------------------------------------------------------------------------- /inference/MCMC_Engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/inference/MCMC_Engine.py -------------------------------------------------------------------------------- /inference/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jupyter-notebooks/Dekant-talk-at-Meetup-Dec-19-2016/Demo_Notebook-Master.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/Dekant-talk-at-Meetup-Dec-19-2016/Demo_Notebook-Master.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/Dekant-talk-at-Meetup-Dec-19-2016/Least_action_principle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/Dekant-talk-at-Meetup-Dec-19-2016/Least_action_principle.svg -------------------------------------------------------------------------------- /jupyter-notebooks/Dekant-talk-at-Meetup-Dec-19-2016/Richard-Feynman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/Dekant-talk-at-Meetup-Dec-19-2016/Richard-Feynman.jpg -------------------------------------------------------------------------------- /jupyter-notebooks/Dekant-talk-at-Meetup-Dec-19-2016/Two-Slit_Experiment_Approximation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/Dekant-talk-at-Meetup-Dec-19-2016/Two-Slit_Experiment_Approximation.svg -------------------------------------------------------------------------------- /jupyter-notebooks/Dekant-talk-at-Meetup-Dec-19-2016/X-Mess_Monty_Hall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/Dekant-talk-at-Meetup-Dec-19-2016/X-Mess_Monty_Hall.png -------------------------------------------------------------------------------- /jupyter-notebooks/Dekant-talk-at-Meetup-Dec-19-2016/still_interference_dots_smear_boxes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/Dekant-talk-at-Meetup-Dec-19-2016/still_interference_dots_smear_boxes.jpg -------------------------------------------------------------------------------- /jupyter-notebooks/JupyterREADME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/JupyterREADME.md -------------------------------------------------------------------------------- /jupyter-notebooks/Octave-magic-for-dummies.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/Octave-magic-for-dummies.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/Rmagic-for-dummies.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/Rmagic-for-dummies.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/bnlearn-qfog-comparison/net-learning-master.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/bnlearn-qfog-comparison/net-learning-master.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/bnlearn-qfog-comparison/param-learning-template-WetGrass.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/bnlearn-qfog-comparison/param-learning-template-WetGrass.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/bnlearn-qfog-comparison/param-learning-template-asia_.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/bnlearn-qfog-comparison/param-learning-template-asia_.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/bnlearn-qfog-comparison/param-learning-template-earthquake.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/bnlearn-qfog-comparison/param-learning-template-earthquake.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/bnlearn-qfog-comparison/param-learning-template.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/bnlearn-qfog-comparison/param-learning-template.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/bnlearn-qfog-comparison/struc-learning-template-WetGrass.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/bnlearn-qfog-comparison/struc-learning-template-WetGrass.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/bnlearn-qfog-comparison/struc-learning-template-asia_.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/bnlearn-qfog-comparison/struc-learning-template-asia_.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/bnlearn-qfog-comparison/struc-learning-template-earthquake.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/bnlearn-qfog-comparison/struc-learning-template-earthquake.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/bnlearn-qfog-comparison/struc-learning-template.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/bnlearn-qfog-comparison/struc-learning-template.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/bnt-examples/bnt-basic-usage-oct-kernel.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/bnt-examples/bnt-basic-usage-oct-kernel.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/bnt-examples/bnt-biftool.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/bnt-examples/bnt-biftool.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/bnt-examples/bnt-examples-included-in-distro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/bnt-examples/bnt-examples-included-in-distro.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/bnt-examples/bnt-read-write-a-bif.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/bnt-examples/bnt-read-write-a-bif.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/bnt-examples/octave-kernel-okay.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/bnt-examples/octave-kernel-okay.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/bnt-examples/octavemagic-bug.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/bnt-examples/octavemagic-bug.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/bnt-qfog-comparison/inference-master.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/bnt-qfog-comparison/inference-master.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/bnt-qfog-comparison/inference-template-WetGrass.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/bnt-qfog-comparison/inference-template-WetGrass.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/bnt-qfog-comparison/inference-template-asia_.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/bnt-qfog-comparison/inference-template-asia_.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/bnt-qfog-comparison/inference-template-earthquake.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/bnt-qfog-comparison/inference-template-earthquake.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/bnt-qfog-comparison/inference-template.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/bnt-qfog-comparison/inference-template.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/cbnets_inference_gui/Asia.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/cbnets_inference_gui/Asia.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/cbnets_inference_gui/WetGrass.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/cbnets_inference_gui/WetGrass.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/cbnets_inference_gui/util_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/cbnets_inference_gui/util_widgets.py -------------------------------------------------------------------------------- /jupyter-notebooks/gallery-cbnets-display.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/gallery-cbnets-display.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/gallery-cbnets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/gallery-cbnets.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/inference_via_ext_software/ModelMaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/inference_via_ext_software/ModelMaker.py -------------------------------------------------------------------------------- /jupyter-notebooks/inference_via_ext_software/ModelMaker_Edward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/inference_via_ext_software/ModelMaker_Edward.py -------------------------------------------------------------------------------- /jupyter-notebooks/inference_via_ext_software/ModelMaker_PyMC3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/inference_via_ext_software/ModelMaker_PyMC3.py -------------------------------------------------------------------------------- /jupyter-notebooks/inference_via_ext_software/WetGrass_inf_edward.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/inference_via_ext_software/WetGrass_inf_edward.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/inference_via_ext_software/WetGrass_inf_pymc3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/inference_via_ext_software/WetGrass_inf_pymc3.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/inference_via_ext_software/WetGrass_param_learn_KLqp_edward.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/inference_via_ext_software/WetGrass_param_learn_KLqp_edward.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/inference_via_ext_software/WetGrass_param_learn_MC_edward.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/inference_via_ext_software/WetGrass_param_learn_MC_edward.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/inference_via_ext_software/WetGrass_param_learn_MC_pymc3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/inference_via_ext_software/WetGrass_param_learn_MC_pymc3.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/inference_via_ext_software/WetGrass_param_learn_VA_pymc3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/inference_via_ext_software/WetGrass_param_learn_VA_pymc3.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/inference_via_ext_software/model_examples_c/WetGrass_inf_obs_CW_pymc3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/inference_via_ext_software/model_examples_c/WetGrass_inf_obs_CW_pymc3.py -------------------------------------------------------------------------------- /jupyter-notebooks/inference_via_ext_software/model_examples_c/WetGrass_inf_obs_all_pymc3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/inference_via_ext_software/model_examples_c/WetGrass_inf_obs_all_pymc3.py -------------------------------------------------------------------------------- /jupyter-notebooks/inference_via_ext_software/model_examples_c/WetGrass_inf_obs_none_edward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/inference_via_ext_software/model_examples_c/WetGrass_inf_obs_none_edward.py -------------------------------------------------------------------------------- /jupyter-notebooks/inference_via_ext_software/model_examples_c/WetGrass_par_MC_obs_CW_edward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/inference_via_ext_software/model_examples_c/WetGrass_par_MC_obs_CW_edward.py -------------------------------------------------------------------------------- /jupyter-notebooks/inference_via_ext_software/model_examples_c/WetGrass_par_VA_obs_CRW_edward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/inference_via_ext_software/model_examples_c/WetGrass_par_VA_obs_CRW_edward.py -------------------------------------------------------------------------------- /jupyter-notebooks/inference_via_ext_software/model_examples_c/WetGrass_par_VA_obs_CW_edward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/inference_via_ext_software/model_examples_c/WetGrass_par_VA_obs_CW_edward.py -------------------------------------------------------------------------------- /jupyter-notebooks/inference_via_ext_software/model_examples_c/WetGrass_par_obs_CRW_pymc3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/inference_via_ext_software/model_examples_c/WetGrass_par_obs_CRW_pymc3.py -------------------------------------------------------------------------------- /jupyter-notebooks/inference_via_ext_software/model_examples_c/WetGrass_par_obs_CW_pymc3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/inference_via_ext_software/model_examples_c/WetGrass_par_obs_CW_pymc3.py -------------------------------------------------------------------------------- /jupyter-notebooks/inference_via_ext_software/model_examples_c/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jupyter-notebooks/nbrun-example/example-master-notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/nbrun-example/example-master-notebook.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/nbrun-example/example-template-notebook-out_0_a.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/nbrun-example/example-template-notebook-out_0_a.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/nbrun-example/example-template-notebook-out_0_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/nbrun-example/example-template-notebook-out_0_b.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/nbrun-example/example-template-notebook-out_1_a.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/nbrun-example/example-template-notebook-out_1_a.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/nbrun-example/example-template-notebook-out_1_b.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/nbrun-example/example-template-notebook-out_1_b.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/nbrun-example/example-template-notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/nbrun-example/example-template-notebook.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/nbrun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/nbrun.py -------------------------------------------------------------------------------- /jupyter-notebooks/plotting-density-matrix.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/plotting-density-matrix.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/pnl-examples/pnl-documentation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/pnl-examples/pnl-documentation.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/pymc2&3-pystan-comparison/References.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/pymc2&3-pystan-comparison/References.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/pymc2&3-pystan-comparison/linear-regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/pymc2&3-pystan-comparison/linear-regression.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/pymc2&3-pystan-comparison/mean-and-sd-of-normal.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/pymc2&3-pystan-comparison/mean-and-sd-of-normal.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/pymc2&3-pystan-comparison/pymc2-examples-from-sta-663-course-at-duke-u.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/jupyter-notebooks/pymc2&3-pystan-comparison/pymc2-examples-from-sta-663-course-at-duke-u.ipynb -------------------------------------------------------------------------------- /learning/AracneLner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/AracneLner.py -------------------------------------------------------------------------------- /learning/ChowLiuTreeLner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/ChowLiuTreeLner.py -------------------------------------------------------------------------------- /learning/DataBinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/DataBinner.py -------------------------------------------------------------------------------- /learning/HC_MMHC_rr_Lner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/HC_MMHC_rr_Lner.py -------------------------------------------------------------------------------- /learning/HC_MMHC_tabu_Lner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/HC_MMHC_tabu_Lner.py -------------------------------------------------------------------------------- /learning/HC_RandRestartLner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/HC_RandRestartLner.py -------------------------------------------------------------------------------- /learning/HC_TabuLner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/HC_TabuLner.py -------------------------------------------------------------------------------- /learning/HillClimbingLner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/HillClimbingLner.py -------------------------------------------------------------------------------- /learning/MB_BasedLner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/MB_BasedLner.py -------------------------------------------------------------------------------- /learning/MB_GrowShrinkLner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/MB_GrowShrinkLner.py -------------------------------------------------------------------------------- /learning/MB_IAMB_Lner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/MB_IAMB_Lner.py -------------------------------------------------------------------------------- /learning/MB_MMPC_Lner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/MB_MMPC_Lner.py -------------------------------------------------------------------------------- /learning/MB_fast_IAMB_Lner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/MB_fast_IAMB_Lner.py -------------------------------------------------------------------------------- /learning/MB_hitonPC_Lner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/MB_hitonPC_Lner.py -------------------------------------------------------------------------------- /learning/MB_inter_IAMB_Lner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/MB_inter_IAMB_Lner.py -------------------------------------------------------------------------------- /learning/MB_lambda_IAMB_Lner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/MB_lambda_IAMB_Lner.py -------------------------------------------------------------------------------- /learning/NaiveBayesLner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/NaiveBayesLner.py -------------------------------------------------------------------------------- /learning/NetParamsLner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/NetParamsLner.py -------------------------------------------------------------------------------- /learning/NetStrucLner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/NetStrucLner.py -------------------------------------------------------------------------------- /learning/NetStrucScorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/NetStrucScorer.py -------------------------------------------------------------------------------- /learning/RandGen_NetParams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/RandGen_NetParams.py -------------------------------------------------------------------------------- /learning/TreeAugNaiveBayesLner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/TreeAugNaiveBayesLner.py -------------------------------------------------------------------------------- /learning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /learning/training_data_c/SimpleTree7nd.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/training_data_c/SimpleTree7nd.csv -------------------------------------------------------------------------------- /learning/training_data_c/WetGrass.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/training_data_c/WetGrass.csv -------------------------------------------------------------------------------- /learning/training_data_c/earthquake.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/training_data_c/earthquake.csv -------------------------------------------------------------------------------- /learning/training_data_q/WetGrass_degs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/training_data_q/WetGrass_degs.csv -------------------------------------------------------------------------------- /learning/training_data_q/WetGrass_sts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/learning/training_data_q/WetGrass_sts.csv -------------------------------------------------------------------------------- /nodes/BayesNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/nodes/BayesNode.py -------------------------------------------------------------------------------- /nodes/Clique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/nodes/Clique.py -------------------------------------------------------------------------------- /nodes/DirectedNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/nodes/DirectedNode.py -------------------------------------------------------------------------------- /nodes/Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/nodes/Node.py -------------------------------------------------------------------------------- /nodes/Sepset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/nodes/Sepset.py -------------------------------------------------------------------------------- /nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /potentials/DensityMatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/potentials/DensityMatrix.py -------------------------------------------------------------------------------- /potentials/DiscreteCondPot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/potentials/DiscreteCondPot.py -------------------------------------------------------------------------------- /potentials/DiscreteUniPot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/potentials/DiscreteUniPot.py -------------------------------------------------------------------------------- /potentials/Potential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/potentials/Potential.py -------------------------------------------------------------------------------- /potentials/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prefabricated_nodes/BeamSplitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/prefabricated_nodes/BeamSplitter.py -------------------------------------------------------------------------------- /prefabricated_nodes/CNot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/prefabricated_nodes/CNot.py -------------------------------------------------------------------------------- /prefabricated_nodes/Marginalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/prefabricated_nodes/Marginalizer.py -------------------------------------------------------------------------------- /prefabricated_nodes/PhaseShifter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/prefabricated_nodes/PhaseShifter.py -------------------------------------------------------------------------------- /prefabricated_nodes/PolarizationRot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/prefabricated_nodes/PolarizationRot.py -------------------------------------------------------------------------------- /prefabricated_nodes/Polarizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/prefabricated_nodes/Polarizer.py -------------------------------------------------------------------------------- /prefabricated_nodes/QubitRot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/prefabricated_nodes/QubitRot.py -------------------------------------------------------------------------------- /prefabricated_nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shannon_info_theory/DataEntropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/shannon_info_theory/DataEntropy.py -------------------------------------------------------------------------------- /shannon_info_theory/Entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiste-qb-net/quantum-fog/HEAD/shannon_info_theory/Entropy.py --------------------------------------------------------------------------------