Hello,
I am running SMILE for VS2015 on VS2017.
I get an error from autolink.h saying that my version of Visual C++ is not supported.
Is it possible to overcome this issue or should I go back to VS2015?
Apparently my _MSC_VER==1914
Thank you for your support,
Alessandro
Search found 9 matches
- Mon Jul 16, 2018 12:33 pm
- Forum: SMILE
- Topic: Visual Studio 2017
- Replies: 3
- Views: 6385
- Fri Mar 16, 2018 9:24 am
- Forum: GeNIe
- Topic: Influence diagram policy evaluation
- Replies: 4
- Views: 4667
Re: Influence diagram policy evaluation
Perfect, thank you!
Alessandro
Alessandro
- Thu Mar 15, 2018 5:44 pm
- Forum: GeNIe
- Topic: Influence diagram policy evaluation
- Replies: 4
- Views: 4667
Re: Influence diagram policy evaluation
Thank you, are you aware of any study investigating the computational time according to these factors?
- Thu Mar 15, 2018 3:19 pm
- Forum: GeNIe
- Topic: Influence diagram policy evaluation
- Replies: 4
- Views: 4667
Influence diagram policy evaluation
Hello, I am working on an influence diagram to identify the optimal policy on multiple decision nodes. Can you provide further information about the computational time of the algorithm by Cooper (1988) [section 5.7.7.1 of GeNIe manual]? Specifically, are you aware of any research investigating the c...
- Wed Jul 19, 2017 8:14 am
- Forum: GeNIe
- Topic: Genie to Matlab
- Replies: 6
- Views: 7424
Re: Genie to Matlab
Hello, I am working on the third option of the last post, i.e. calling SMILE (C++) directly from Matlab. After adding the path leading to SMILE folder, I try to add SMILE library to Matlab with the following code loadlibrary('smile','smile.h'); Unfortunately I get the following message from Matlab E...
- Tue Jul 18, 2017 8:58 am
- Forum: SMILE
- Topic: Dynamic BN
- Replies: 11
- Views: 12459
Re: Dynamic BN
I believe it crashes at the GetSize(); to initialize the size of "prob0" to be equal to the CPT size.
- Mon Jul 17, 2017 4:15 pm
- Forum: SMILE
- Topic: Dynamic BN
- Replies: 11
- Views: 12459
Re: Dynamic BN
I tried the following code to get access to node "Ignition" and modify the CPT at time slice 0. int handle = net.FindNode("Ignition"); if (handle < 0) { return handle; } DSL_cpt* cptDef = static_cast<DSL_cpt *>(net.GetNode(handle)->Definition()); DSL_doubleArray prob0(cptDef->Get...
- Mon Jul 17, 2017 11:43 am
- Forum: SMILE
- Topic: Dynamic BN
- Replies: 11
- Views: 12459
Re: Dynamic BN
That way, I only get access to the matrix but I cannot modify the probabilities. In case of no temporal slices, I use the following code to get access and modify the probabilities. DSL_nodeDefinition *successDef = net.GetNode(handle)->Definition(); DSL_doubleArray sp(successDef->GetMatrix()->GetSize...
- Thu Jul 13, 2017 10:16 am
- Forum: SMILE
- Topic: Dynamic BN
- Replies: 11
- Views: 12459
Re: Dynamic BN
Hello,
I am reading the draft related to DBNs.
I am wondering how to get access to a specific probability matrix at a specific temporal slice in order to modify the probabilities.
Thank you in advance!
I am reading the draft related to DBNs.
I am wondering how to get access to a specific probability matrix at a specific temporal slice in order to modify the probabilities.
Thank you in advance!