This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> parseQuestionnaire() | |
[1] "Bootstraping TLX data for task 1-4" | |
bootstraping var PointPerformance_task1to4 | |
X1 X2 X3 X4 X5 X6 | |
1 4.125 3.5 4.5625 PointPerformance_task1to4 Performance Po | |
bootstraping var PointMental_task1to4 | |
X1 X2 X3 X4 X5 X6 | |
1 1.46875 1.04546858697444 1.90625 PointMental_task1to4 Mental Po | |
bootstraping var PointPhysical_task1to4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> library(ggplot2) | |
> library(reshape2) | |
> library(glue) | |
> library(dplyr) | |
> library(ggpubr) | |
> #we create some empty data frames to hold all events, the summary of time data, and the error data | |
> fullTimeData <- read.table("logfiles/log/_globalTimeDummy.txt",header=TRUE,sep="\t",fill=TRUE,blank.lines.skip=TRUE,as.is=TRUE) | |
> summaryTimeData <- read.table("logfiles/log/_summaryTimeDummy.txt",header=TRUE,sep="\t",fill=TRUE,blank.lines.skip=TRUE,as.is=TRUE) | |
Warning message: | |
In read.table("logfiles/log/_summaryTimeDummy.txt", header = TRUE, : |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In file included from ../inst/include/RcppEigen.h:25: | |
In file included from ../inst/include/RcppEigenForward.h:36: | |
In file included from ../inst/include/unsupported/Eigen/Polynomials:135: | |
../inst/include/Eigen/src/Core/util/ReenableStupidWarnings.h:14:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas] | |
#pragma clang diagnostic pop | |
^ | |
In file included from RcppEigen.cpp:22: | |
In file included from ../inst/include/RcppEigen.h:25: | |
In file included from ../inst/include/RcppEigenForward.h:37: | |
In file included from ../inst/include/unsupported/Eigen/SparseExtra:51: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In file included from ../inst/include/RcppEigen.h:25: | |
In file included from ../inst/include/RcppEigenForward.h:36: | |
In file included from ../inst/include/unsupported/Eigen/Polynomials:135: | |
../inst/include/Eigen/src/Core/util/ReenableStupidWarnings.h:14:30: warning: pragma diagnostic pop could not pop, no matching push [-Wunknown-pragmas] | |
#pragma clang diagnostic pop | |
^ | |
In file included from RcppEigen.cpp:22: | |
In file included from ../inst/include/RcppEigen.h:25: | |
In file included from ../inst/include/RcppEigenForward.h:37: | |
In file included from ../inst/include/unsupported/Eigen/SparseExtra:51: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/Users/davidcoeurjolly/Projects/utk/src/integration/../../externals/CImg-3.2.0_pre110222/CImg.h:2422:31: warning: 'vsprintf' is deprecated: This function is provided for compatibility reasons only. Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use vsnprintf(3) instead. | |
[-Wdeprecated-declarations] | |
const int result = std::vsprintf(s,format,args); | |
^ | |
In file included from /Users/davidcoeurjolly/Projects/utk/src/integration/IntegrationGaussian_fromfile_2dd.cpp:32: | |
In file included from /Users/davidcoeurjolly/Projects/utk/src/integration/../parameters/ParamParser_getopt.hpp:35: | |
In file included from /Users/davidcoeurjolly/Projects/utk/src/integration/../parameters/ParamParser.hpp:4: | |
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.1.sdk/usr/include/c++/v1/string:519: | |
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/De |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@inproceedings{hal-01892997, | |
TITLE = {{Systematic Biases in Link Prediction: comparing heuristic and graph embedding based methods}}, | |
AUTHOR = {Sinha, Aakash and Vaudaine, R{\'e}mi and Cazabet, R{\'e}my}, | |
URL = {https://hal-udl.archives-ouvertes.fr/hal-01892997}, | |
BOOKTITLE = {{Complex networks 2018 - The 7th International Conference on Complex Networks and Their Applications}}, | |
ADDRESS = {Cambridge, United Kingdom}, | |
YEAR = {2018}, | |
KEYWORDS = {link prediction ; systematic biases ; filter bubble ; graph embedding}, | |
PDF = {https://hal-udl.archives-ouvertes.fr/hal-01892997/file/Author_start_from_here.pdf}, | |
HAL_ID = {hal-01892997}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "geometrycentral/surface/halfedge_mesh.h" | |
#include "geometrycentral/surface/meshio.h" | |
#include "geometrycentral/surface/vertex_position_geometry.h" | |
#include "geometrycentral/surface/direction_fields.h" | |
#include "polyscope/polyscope.h" | |
#include "polyscope/surface_mesh.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 3.1) | |
project(example) | |
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake) | |
# libigl | |
option(LIBIGL_USE_STATIC_LIBRARY "Use libigl as static library" OFF) | |
option(LIBIGL_WITH_ANTTWEAKBAR "Use AntTweakBar" OFF) | |
option(LIBIGL_WITH_CGAL "Use CGAL" ON) | |
option(LIBIGL_WITH_COMISO "Use CoMiso" OFF) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ 61%] Building CXX object src/appleseed.python/CMakeFiles/appleseed.python.dir/bindvector.cpp.o | |
[ 61%] Building CXX object src/appleseed.python/CMakeFiles/appleseed.python.dir/dict2dict.cpp.o | |
[ 61%] Building CXX object src/appleseed.python/CMakeFiles/appleseed.python.dir/gillocks.cpp.o | |
[ 61%] Building CXX object src/appleseed.python/CMakeFiles/appleseed.python.dir/module.cpp.o | |
[ 61%] Linking CXX shared module _appleseedpython.so | |
Undefined symbols for architecture x86_64: | |
"boost::python::pytype_check(_typeobject*, _object*)", referenced from: | |
foundation::Dictionary (anonymous namespace)::convert_from_bpy_dict<foundation::Dictionary>(boost::python::dict const&) in dict2dict.cpp.o | |
renderer::ParamArray (anonymous namespace)::convert_from_bpy_dict<renderer::ParamArray>(boost::python::dict const&) in dict2dict.cpp.o | |
"boost::python::instance_holder::deallocate(_object*, void*)", referenced from: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU Lesser General Public License as | |
* published by the Free Software Foundation, either version 3 of the | |
* License, or (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
* GNU General Public License for more details. |
NewerOlder