Skip to content

Instantly share code, notes, and snippets.

Отчёт о проведённом исследовании системы дифференциальных уравнений

Автор

Дмитрий Шачнев

Группа

411

Дата

2013-10-10

Постановка задачи

@mitya57
mitya57 / gist:6086532
Created July 26, 2013 05:29
Python-Markdown docs diff
diff --git a/build/docs/change_log.html b/build/docs/change_log.html
index 93b91a1..c4e620f 100644
--- a/build/docs/change_log.html
+++ b/build/docs/change_log.html
@@ -47,12 +47,12 @@ Broken up into multiple files.</p>
<p>Oct 2008: Changed logging behavior to work better with other systems.
Refactored tree tarversing. Added treap implementation, then replaced with
OrderedDEict. Renamed various processors to better reflect what they actually
-do. Refactored footnote ext to match php Extra's output.</p>
+do. Refactored footnote ext to match php Extra&rsquo;s output.</p>
======================================================================
ERROR: test_format_sparse_config (pandas.tests.test_index.TestMultiIndex)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/lib/python2.7/dist-packages/pandas/tests/test_index.py", line 1378, in test_format_sparse_config
pd.reset_printoptions()
File "/usr/lib/python2.7/dist-packages/pandas/core/format.py", line 1643, in reset_printoptions
reset_option("^display\.")
File "/usr/lib/python2.7/dist-packages/pandas/core/config.py", line 196, in __call__
return self.__func__(*args, **kwds)
@mitya57
mitya57 / control
Created May 9, 2013 08:13
PyQt5 WIP packaging
Source: pyqt5
Section: python
Priority: optional
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
XSBC-Original-Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Torsten Marek <shlomme@debian.org>,
Michael Casadevall <mcasadevall@debian.org>,
Bernd Zeimetz <bzed@debian.org>,
Scott Kitterman <scott@kitterman.com>
Build-Depends: dpkg-dev (>= 1.16.1~),
@mitya57
mitya57 / test.cpp
Created April 4, 2013 18:01
Test for QtWebKit fonts bug
#include <QtGui/QApplication>
#include <QtWebKit/QWebView>
int main (int argc, char **argv) {
QApplication app(argc, argv);
QWidget window;
QWebView view(&window);
view.setHtml("<code>Test test test...</code>");
window.show();
return app.exec();
From 67c9502672a5ee87fe1a7d493fb277fc7ff69cdf Mon Sep 17 00:00:00 2001
From: Dmitry Shachnev <mitya57@gmail.com>
Date: Fri, 11 Jan 2013 15:33:38 +0400
Subject: [PATCH] test_coverage_plugin.py: skip the tests when coverage is not
available (closes #597)
---
functional_tests/test_coverage_plugin.py | 17 ++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)
@mitya57
mitya57 / lab4.cpp
Created November 24, 2012 13:53
Лабораторная №4
#include <cstdlib>
#include <cmath>
#include <iostream>
#define U 6
#define RMAX 100 // 300
#define K .1 // .5
#define Dx 50
#define Dy 70
#define Dz 80
@mitya57
mitya57 / lab2.cpp
Created November 24, 2012 12:43
Лабораторная №2
#include <cmath>
#include <cstdlib>
#include <iostream>
/**
* Test data:
* 70 120 .5 .7 50 70 20 10 30
* W1 = 0.292
* W2 = 0.145
*/
@mitya57
mitya57 / lab1.cpp
Created November 24, 2012 11:57
Лабораторная №1
#include <cmath>
#include <cstdlib>
#include <iostream>
#ifndef RANGE
#define RANGE 10000
#endif
#ifndef CORRELATION_OFFSET
#define CORRELATION_OFFSET 10
@mitya57
mitya57 / addroute.py
Created November 16, 2012 14:26
Main script for the routes website
#!/usr/bin/python3
# Author: Dmitry Shachnev, 2012
import sys
import time
import os.path
R_NUMBER = 'Номер маршрута'
R_DIRECTIONS = 'Маршрут'
R_WAY = 'Трасса'