Subject | Hash | Author | Date (UTC) |
---|---|---|---|
whitebox: implement run_sample() | 576ca55be17e6f14500e70d97536e0b53a57f029 | I am | 2021-10-30 21:01:07 |
qt_gui: implement dicebox setup | 09a7074b12e46d0554b2c4f73b6a8b672d0b4428 | I am | 2021-10-30 15:12:33 |
schemes: small fix | 934b2269e5b08930e23fd67df07234251b123153 | I am | 2021-10-30 15:11:39 |
qt_gui: prepare setup Goal setup dialog | e53197a0b5d5a994dddbcbfb02042c5383f79ec7 | Aleksei Gerasimov | 2021-10-29 16:47:09 |
schemes: add conventional functions for tn schemes | 9a32048dc342604291f1b7d17efc71be755d3810 | Aleksei Gerasimov | 2021-10-29 16:45:24 |
reader: make Reader callable | 5cdd55d11ff846f9116fb0e00f54a7830ef3c276 | Aleksei Gerasimov | 2021-10-27 16:30:05 |
make WellMet standalone runnable | 1fe983d633d7194a64cf6928044082936790ce4d | Aleksei Gerasimov | 2021-10-27 16:21:51 |
qt_gui: prepare qt_box_functions module | c500fcd20e7b296262a0566d04aabb7bd1ae9cfa | Aleksei Gerasimov | 2021-10-25 15:39:56 |
shapeshare: keep empty file to reserve the name | b11f17e13dafc3d58db5ad9f101c0126e0bfd871 | Aleksei Gerasimov | 2021-10-21 14:48:03 |
delete sball_old :( | 792d9d83fde0f38e7396162788ec8aa922b0fd0c | Aleksei Gerasimov | 2021-10-21 14:47:06 |
whitebox: add Z_sum, Z_prod, small clean up | faec934bb03c20906c9091fc196cc0daf824b54f | Aleksei Gerasimov | 2021-10-21 13:48:07 |
g_models: add neverfall, add sign parameter to Z_prod | 129abf19da15a5dfcb5a02614d92a233f914d146 | Aleksei Gerasimov | 2021-10-21 13:45:47 |
mplot: add one more qhull plot | 32e7003aac4887bd83bfff640093f755b4f6cffe | I am | 2021-09-14 11:42:56 |
mplot: add ESREL-related figures | cba805ba8e7f3c2337027eec6e760aa9234dfdc2 | I am | 2021-09-12 10:17:21 |
mplot.mart: allow set up fill keyword | cf94410513091b5f96e0e17e8de2f7a3feee1a03 | I am | 2021-09-12 10:15:55 |
mplot: add qhull&density figure | a36fb606e9f425742925aa4953c0ae07d6b51409 | I am | 2021-09-10 15:17:58 |
qt_plot: send sliced sample box to matplotlib | fda486b90c56e77bc88b38d0d94d08a751277cfb | I am | 2021-09-10 15:01:55 |
mplot: include Axes3d patch | 8f5dc7f04b6c804b5ec169ec7b744a8618b3bb69 | I am | 2021-09-10 11:05:20 |
rework mplot module considerably | 5343602c63032f6f7fd06701b0883eaabb4fc6c1 | I am | 2021-09-09 13:24:45 |
convex_hull: reduce max R to that not overflows everything everytime | 2108df698e4d45bfae9d9882d4b4cc62340b03cc | Aleksei Gerasimov | 2021-07-21 13:56:41 |
File | Lines added | Lines deleted |
---|---|---|
whitebox.py | 3 | 1 |
File whitebox.py changed (mode: 100644) (index 07fb851..1f864d2) | |||
... | ... | class WhiteBox: | |
76 | 76 | sample = wt.sample_box() | sample = wt.sample_box() |
77 | 77 | ||
78 | 78 | # zamykame se do sebe | # zamykame se do sebe |
79 | return wt.run_sample(sample) | ||
80 | |||
81 | def run_sample(wt, sample): | ||
79 | 82 | result = wt.gm(sample) | result = wt.gm(sample) |
80 | 83 | wt.sample_box.add_sample(result) | wt.sample_box.add_sample(result) |
81 | 84 | return result | return result |
82 | |||
83 | 85 | ||
84 | 86 | def __getitem__(self, slice): | def __getitem__(self, slice): |
85 | 87 | self_copy = copy.copy(self) | self_copy = copy.copy(self) |