Skip to content

Instantly share code, notes, and snippets.

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <math.h>
void dtrmm_(char *side, char *uplo, char *transa, char *diag, int *m, int *n, double *alpha, double *A, int *LDA, double *B, int *LDB);
double *mult(double *A, double *B, int n)
{
double *X = (double *)calloc(n*n, sizeof(double));
From e81e91cc392914369f71430d1fcf94e8a9c6acdc Mon Sep 17 00:00:00 2001
From: "Sven (Sbte)" <[email protected]>
Date: Sun, 10 Mar 2013 11:59:49 +0100
Subject: Improve detection of whether we have to interpolate
Fixes angle interpolation in a nicer way and also fixed case where a turn
started before anything was rendered
---
source/simulation2/components/CCmpPosition.cpp | 23 +++++++++++++++--------
1 file changed, 15 insertions(+), 8 deletions(-)
@Sbte
Sbte / papyexception1
Created October 16, 2011 12:59
Random papyon exception when closing emesene
Error in sys.excepthook:
Traceback (most recent call last):
File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 48, in apport_excepthook
if not enabled():
TypeError: 'NoneType' object is not callable
Original exception was:
Traceback (most recent call last):
File "/home/sven/emesene/emesene/e3/papylib/papyon/papyon/transport.py", line 307, in __on_status_change
if status == gnet.IoStatus.OPEN: