Page 1 of 1

Quantlib Support

Posted: September 10th, 2020, 8:42 pm
by SWilson
I was wondering if anyone is available or if you can refer me to someone for technical questions on using QuantLib.  Preferably over the phone.  Thanks. 

Re: Quantlib Support

Posted: September 11th, 2020, 7:04 am
by pcaspers
The best way imo is to post your questions to quantlib-users@lists.sourceforge.net

Re: Quantlib Support

Posted: September 11th, 2020, 9:25 am
by Cuchulainn
I was wondering if anyone is available or if you can refer me to someone for technical questions on using QuantLib.  Preferably over the phone.  Thanks. 
Free support?
If it's important enough  I would enter into a service contract.

Re: Quantlib Support

Posted: September 11th, 2020, 9:26 am
by Cuchulainn
Debugging C++ code over the phone qualifies as "cruel and unusual punishment" IMHO.
LOL
Does this compile?
template<typename T, typename... Ts>
std::enable_if_t<!std::conjunction_v<std::is_same<T, Ts>...>>
func(T, Ts...) {
    std::cout << "not all types in pack are T\n";
}


Re: Quantlib Support

Posted: September 11th, 2020, 2:40 pm
by Cuchulainn
I don't know. Can you read the compiler error message to me again, but slower? The line is breaking.
A bigger screen.

Re: Quantlib Support

Posted: September 11th, 2020, 3:48 pm
by Cuchulainn
I don't know. Can you read the compiler error message to me again, but slower? The line is breaking.
On VS, project properties->linker->system->subsystem->Console. 

Re: Quantlib Support

Posted: September 11th, 2020, 4:31 pm
by pcaspers
compiles for me:

clang++ check.cpp -o check --std=c++17
#include <type_traits>
#include <iostream>

template <typename T, typename... Ts> std::enable_if_t<!std::conjunction_v<std::is_same<T, Ts>...> > func(T, Ts...) {
    std::cout << "not all types in pack are T\n";
}

int main() {
    // func(1,2,3); // compiler error
    func(1,"a",3);
}

Re: Quantlib Support

Posted: September 11th, 2020, 4:39 pm
by SWilson
I was wondering if anyone is available or if you can refer me to someone for technical questions on using QuantLib.  Preferably over the phone.  Thanks. 
Free support?
If it's important enough  I would enter into a service contract.
Just sent you a PM about a Service Contract, please let me know if you haven't received it.  Thanks. 

Re: Quantlib Support

Posted: September 11th, 2020, 6:11 pm
by Cuchulainn
received it! Just replied.