| --- Log opened Sun Jul 24 00:00:35 2016 | ||
| shogun-buildbot | build #1048 of nightly_none is complete: Failure [failed compile] Build details are at http://buildbot.shogun-toolbox.org/builders/nightly_none/builds/1048 blamelist: Heiko Strathmann <heiko.strathmann@gmail.com>, christopher <christopher.goldsworthy@outlook.com> | 03:02 | 
|---|---|---|
| shogun-buildbot | build #35 of clang - thread analysis is complete: Failure [failed compile] Build details are at http://buildbot.shogun-toolbox.org/builders/clang%20-%20thread%20analysis/builds/35 blamelist: Heiko Strathmann <heiko.strathmann@gmail.com>, christopher <christopher.goldsworthy@outlook.com> | 03:45 | 
| shogun-buildbot | build #33 of clang - undefined behaviour analysis is complete: Failure [failed compile] Build details are at http://buildbot.shogun-toolbox.org/builders/clang%20-%20undefined%20behaviour%20analysis/builds/33 blamelist: Heiko Strathmann <heiko.strathmann@gmail.com>, christopher <christopher.goldsworthy@outlook.com> | 03:49 | 
| shogun-buildbot | build #49 of memleak - valgrind is complete: Failure [failed memory check] Build details are at http://buildbot.shogun-toolbox.org/builders/memleak%20-%20valgrind/builds/49 blamelist: Heiko Strathmann <heiko.strathmann@gmail.com>, christopher <christopher.goldsworthy@outlook.com> | 05:59 | 
| shogun-buildbot | build #1177 of nightly_default is complete: Failure [failed test notebooks] Build details are at http://buildbot.shogun-toolbox.org/builders/nightly_default/builds/1177 blamelist: Heiko Strathmann <heiko.strathmann@gmail.com>, christopher <christopher.goldsworthy@outlook.com> | 06:46 | 
| -!- mizari [~mizari@95-174-213-100.nts.su] has joined #shogun | 08:31 | |
| -!- mizari [~mizari@95-174-213-100.nts.su] has quit [Quit: Leaving] | 11:49 | |
| -!- OXPHOS [c7b48530@gateway/web/freenode/ip.199.180.133.48] has joined #shogun | 12:03 | |
| -!- sanuj [~sanuj@117.203.17.119] has joined #shogun | 12:47 | |
| -!- shogun-buildbot [~shogun-bu@7nn.de] has quit [Quit: buildmaster reconfigured: bot disconnecting] | 14:53 | |
| -!- shogun-buildbot [~shogun-bu@7nn.de] has joined #shogun | 14:53 | |
| @wiking | shogun-buildbot: force build --branch=develop 'coverity analysis' | 14:53 | 
| shogun-buildbot | build #109 forced | 14:53 | 
| shogun-buildbot | I'll give a shout when the build finishes | 14:53 | 
| shogun-buildbot | Hey! build coverity analysis #109 is complete: Retry [retry exception slave lost] | 14:55 | 
| shogun-buildbot | Build details are at http://buildbot.shogun-toolbox.org/builders/coverity%20analysis/builds/109 | 14:55 | 
| OXPHOS | wiking: there? | 15:03 | 
| @wiking | yes | 15:05 | 
| OXPHOS | wiking: sorry never mind..I just figured it out by myself | 15:10 | 
| @wiking | great! | 15:12 | 
| @wiking | :) | 15:12 | 
| sanuj | wiking, there? | 15:43 | 
| @wiking | yes | 15:46 | 
| sanuj | wiking, i'm having trouble with operator== for std::function | 15:47 | 
| sanuj | error: no match for ‘operator==’ (operand types are ‘std::function<shogun::Some<shogun::MockBaseClass>()>’ and ‘std::function<shogun::Some<shogun::MockBaseClass>()>’) | 15:47 | 
| @wiking | yes | 15:47 | 
| @wiking | i know | 15:47 | 
| @wiking | i told you what you should do | 15:47 | 
| @wiking | debug it | 15:47 | 
| sanuj | it's not compiling | 15:48 | 
| sanuj | can't use gdb | 15:48 | 
| @wiking | well then there's no operator defined over those types | 15:48 | 
| @wiking | i mean the error says it all | 15:48 | 
| sanuj | yeah | 15:48 | 
| sanuj | so many operator== :P | 15:49 | 
| @wiking | http://en.cppreference.com/w/cpp/utility/functional/function/operator_cmp | 15:49 | 
| sanuj | wiking, you think i can avoid using std::function? | 15:51 | 
| sanuj | and use void** or something | 15:51 | 
| sanuj | btw why is it giving compiler error | 15:52 | 
| sanuj | it says -> non-empty functions compare non-equal. | 15:52 | 
| shogun-buildbot | build #110 forced | 15:52 | 
| shogun-buildbot | I'll give a shout when the build finishes | 15:52 | 
| @wiking | btw does shogun::MockBaseClass have a operator==()? | 15:54 | 
| sanuj | wiking, i just added one | 15:55 | 
| @wiking | meaning you just added one and still getting this error? | 15:58 | 
| @wiking | but as i can see some doesnt have one | 15:59 | 
| sanuj | wiking, yeah | 16:14 | 
| @wiking | so | 16:17 | 
| @wiking | how can u compare some<x> == some<y> | 16:17 | 
| @wiking | ? | 16:17 | 
| @wiking | if you dont define the equation over it | 16:18 | 
| sanuj | wiking, you mean x and y are different? | 16:19 | 
| @wiking | no what i mean is that | 16:19 | 
| @wiking | how do you want to comapre 2 Some | 16:19 | 
| @wiking | if you dont define the equation function over them | 16:19 | 
| @wiking | i mean x and y can be different or the same | 16:19 | 
| @wiking | doesn't matter | 16:19 | 
| @wiking | since you/compiler doesn't know as you dont have a definition for comparision | 16:20 | 
| @wiking | (meaning the operator==() | 16:20 | 
| sanuj | i was able to compare some with == | 16:20 | 
| sanuj | like https://github.com/shogun-toolbox/shogun/pull/3370/files#diff-9b3ac99b134f7ac31af265b4a24e0dfcR68 | 16:20 | 
| @wiking | how? | 16:20 | 
| @wiking | if you dont have the oeprator | 16:20 | 
| sanuj | yeah, i thought about that | 16:20 | 
| sanuj | but it worked | 16:20 | 
| sanuj | so i assumed that operator== is not necessary to compare objects | 16:21 | 
| @wiking | again think about why it worked | 16:21 | 
| sanuj | it used the default operator==? | 16:21 | 
| @wiking | you can actually debug this | 16:21 | 
| @wiking | to see what happens | 16:21 | 
| sanuj | oh | 16:21 | 
| sanuj | okay | 16:21 | 
| sanuj | i'll try that | 16:21 | 
| sanuj | wiking, can you merge this https://github.com/shogun-toolbox/shogun/pull/3388 | 16:23 | 
| -!- shogun-notifier- [~irker@7nn.de] has joined #shogun | 16:24 | |
| shogun-notifier- | shogun: Sanuj :develop * fd7a5a8 / src/shogun/lib/any.h: https://github.com/shogun-toolbox/shogun/commit/fd7a5a8dd5d6f5d50ccbc381286d31a9687c9909 | 16:24 | 
| shogun-notifier- | shogun: fix bug in any | 16:24 | 
| shogun-notifier- | shogun: Viktor Gal :develop * 8803679 / src/shogun/lib/any.h: https://github.com/shogun-toolbox/shogun/commit/8803679e89d8bea199dc0607d613467f486787f8 | 16:24 | 
| shogun-notifier- | shogun: Merge pull request #3388 from sanuj/any_fix | 16:24 | 
| shogun-notifier- | shogun: | 16:24 | 
| shogun-notifier- | shogun: fix bug in any | 16:24 | 
| sanuj | thanks | 16:25 | 
| shogun-buildbot | Hey! build coverity analysis #110 is complete: Success [build successful] | 16:38 | 
| shogun-buildbot | Build details are at http://buildbot.shogun-toolbox.org/builders/coverity%20analysis/builds/110 | 16:38 | 
| sanuj | wiking, it goes to Some<T>::operator T*() {return raw;} | 16:41 | 
| sanuj | and compares raw values | 16:41 | 
| -!- OXPHOS [c7b48530@gateway/web/freenode/ip.199.180.133.48] has quit [Quit: Page closed] | 16:42 | |
| -!- sanuj [~sanuj@117.203.17.119] has quit [Ping timeout: 252 seconds] | 16:53 | |
| shogun-buildbot | build #1308 of precise - libshogun is complete: Failure [failed compile] Build details are at http://buildbot.shogun-toolbox.org/builders/precise%20-%20libshogun/builds/1308 blamelist: Sanuj <sanuj.sharma.in@gmail.com>, Viktor Gal <vigsterkr@gmail.com> | 17:04 | 
| shogun-buildbot | build #2950 of bsd1 - libshogun is complete: Failure [failed configure] Build details are at http://buildbot.shogun-toolbox.org/builders/bsd1%20-%20libshogun/builds/2950 blamelist: Sanuj <sanuj.sharma.in@gmail.com>, Viktor Gal <vigsterkr@gmail.com> | 17:12 | 
| -!- sanuj [~sanuj@117.203.17.119] has joined #shogun | 17:41 | |
| shogun-buildbot | build #87 of xenial - libshogun is complete: Failure [failed test] Build details are at http://buildbot.shogun-toolbox.org/builders/xenial%20-%20libshogun/builds/87 blamelist: Sanuj <sanuj.sharma.in@gmail.com>, Viktor Gal <vigsterkr@gmail.com> | 17:43 | 
| -!- shogun-notifier- [~irker@7nn.de] has quit [Quit: transmission timeout] | 19:24 | |
| -!- sanuj [~sanuj@117.203.17.119] has quit [Remote host closed the connection] | 20:00 | |
| -!- lisitsyn is now known as bazdback | 22:58 | |
| bazdback | hola | 22:58 | 
| --- Log closed Mon Jul 25 00:00:37 2016 | ||
Generated by irclog2html.py 2.10.0 by Marius Gedminas - find it at mg.pov.lt!