Yu Yamashiro
Yu Yamashiro
## Changes - SA, SQAのsparseをデフォルトをTrueに変更 ## Benchmark neal, sparse=True, sparse=False の3パターンでのデフォルト設定のTSPでのベンチマークを取ってみたが、`benchmark/benchmark_tsp_tts.py` sparse=Trueの方がsampling_timeで見ると遅いのでもう少し詳細なベンチマークが必要。num_sweepsを変えるなどする必要あり。 ## Benchmark Result 都市数 N = 30 のTSPのQUBOでのベンチマーク ``` neal Results ------- Benchmark Results: # of feasible: 10/10...
I want to except nimpy.KeyError. However I can't do it. Example: ``` python try: # Some code: call Nim by nimpy except KeyError as e: # I can't catch nimpy.KeyError...