Displaying 2 results from an estimated 2 matches for "instytute".
Did you mean:
institute
2008 Apr 09
2
GLM fitting in R and Statistica
...how to explain why R
results are different (and hopefully better)? I tried to argue that I
did everything according to Crawley's R Book so probably the models
are constructed correctly but my supervisor wasn't convinced...
Looking forward any suggestions,
Agnieszka
--
Agnieszka Kloch
Instytute of Environmental Sciences, Jagielonian University
ul. Gronostajowa 7, 30-387 Krakow, Poland, tel. (12) 664 51 51
2015 Feb 13
2
[LLVMdev] SIGILL in regex::assign()
Hi, I have this simple program:
#include <regex>
int main()
{
std::regex re;
re.assign(std::regex("foo")); // SIGILL
return 0;
}
It runs smoothly if compiled with g++ but raises "illegal instruction"
when compiled with clang++:
g++ -std=c++11 -O0 -g -o test-g++ test.cpp
clang++ -std=c++11 -O0 -g -o test-clang++ test.cpp
ptomulik at barakus:$ ./test-g++
ptomulik