Skip to content

Commit

Permalink
ver.0.2として公開
Browse files Browse the repository at this point in the history
  • Loading branch information
dc1394 committed Oct 21, 2019
1 parent 50da1d3 commit a477f91
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

★更新履歴
 2019/6/22 ver.0.1 公開。
 2019/10/21 ver.0.2 Nelsonの確率力学に対応。

★ライセンス
 このソフトはフリーソフトウェアです(2条項BSDライセンス)。
Expand Down Expand Up @@ -119,6 +120,9 @@ OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Building Blocks (Intel® TBB)を使用しています。
こちらのライセンスは GNU General Public License, version 2 になります。

 SchracVisualize_Direct3D_11にはGNU ProjectによるGNU Scientific Libraryを使用し
 ています。こちらのライセンスは GNU General Public License になります。

SchracVisualize_Direct3D_11には松本眞教授と斎藤睦夫さんによるSIMD-oriented
Fast Mersenne Twister (SFMT)を使用しています。こちらのライセンスは修正BSDライ
センスになります。
3 changes: 2 additions & 1 deletion SchracVisualize_Direct3D_11/SchracVisualize_Direct3D_11.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#include "SDKmisc.h"
#include "orbitaldensityrand/orbitaldensityrand.h"
#include "orbitaldensityrand/utility/utility.h"
#include <cstdint> // for std::int32_t
#include <numeric> // for std::iota
#include <optional> // for std::optional
#include <boost/assert.hpp> // for boost::assert
Expand Down Expand Up @@ -1063,7 +1064,7 @@ void SetUI()
hud.AddStatic(IDC_OUTPUT, L"Vertex size", 20, iY += 34, 125, 22);
hud.GetStatic(IDC_OUTPUT)->SetTextColor(D3DCOLOR_ARGB(255, 255, 255, 255));
auto const max = nornel == OrbitalDensityRand::Normal_Nelson_type::NORMAL ? 1000000 : 10000000;
hud.AddSlider(IDC_SLIDER, 35, iY += 24, 125, 22, 0, max, podr->Vertexsize);
hud.AddSlider(IDC_SLIDER, 35, iY += 24, 125, 22, 0, max, static_cast<std::int32_t>(podr->Vertexsize));

ui.SetCallback(OnGUIEvent);
}
Expand Down
8 changes: 8 additions & 0 deletions SchracVisualize_Direct3D_11/document/readme_x64.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

★更新履歴
 2019/6/30 ver.0.1 公開。
 2019/10/21 ver.0.2 Nelsonの確率力学に対応。

★ライセンス
 このソフトはフリーソフトウェアです(2条項BSDライセンス)。
Expand Down Expand Up @@ -123,3 +124,10 @@ OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
SchracVisualize_Direct3D_11にはIntel CorporationによるIntel® Threading
Building Blocks (Intel® TBB)を使用しています。
こちらのライセンスは GNU General Public License, version 2 になります。

 SchracVisualize_Direct3D_11にはGNU ProjectによるGNU Scientific Libraryを使用し
 ています。こちらのライセンスは GNU General Public License になります。

SchracVisualize_Direct3D_11には松本眞教授と斎藤睦夫さんによるSIMD-oriented
Fast Mersenne Twister (SFMT)を使用しています。こちらのライセンスは修正BSDライ
センスになります。
8 changes: 8 additions & 0 deletions SchracVisualize_Direct3D_11/document/readme_x86.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

★更新履歴
 2019/6/30 ver.0.1 公開。
 2019/10/21 ver.0.2 Nelsonの確率力学に対応。

★ライセンス
 このソフトはフリーソフトウェアです(2条項BSDライセンス)。
Expand Down Expand Up @@ -123,3 +124,10 @@ OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
SchracVisualize_Direct3D_11にはIntel CorporationによるIntel® Threading
Building Blocks (Intel® TBB)を使用しています。
こちらのライセンスは GNU General Public License, version 2 になります。

 SchracVisualize_Direct3D_11にはGNU ProjectによるGNU Scientific Libraryを使用し
 ています。こちらのライセンスは GNU General Public License になります。

SchracVisualize_Direct3D_11には松本眞教授と斎藤睦夫さんによるSIMD-oriented
Fast Mersenne Twister (SFMT)を使用しています。こちらのライセンスは修正BSDライ
センスになります。

0 comments on commit a477f91

Please sign in to comment.