This file contains hidden or 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
| <mediawiki xmlns="http://www.mediawiki.org/xml/export-0.7/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mediawiki.org/xml/export-0.7/ http://www.mediawiki.org/xml/export-0.7.xsd" version="0.7" xml:lang="en"> | |
| <siteinfo> | |
| <sitename>Wikipedia</sitename> | |
| <base>http://en.wikipedia.org/wiki/Main_Page</base> | |
| <generator>MediaWiki 1.20wmf12</generator> | |
| <case>first-letter</case> | |
| <namespaces> | |
| <namespace key="-2" case="first-letter">Media</namespace> | |
| <namespace key="-1" case="first-letter">Special</namespace> | |
| <namespace key="0" case="first-letter" /> |
This file contains hidden or 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
| /* | |
| * matrix.c - Matrix computations that has been optimized by the students | |
| * | |
| * Copyright (c) 2011 Christian Klauser, All rights reserved | |
| * Author: Christian Klauser <klauserc@student.ethz.ch>, | |
| * | |
| * I used comparatively simple algorithms for both LU-decomposition | |
| * and the matrix multiplication involved in checking for equality. | |
| * - My LU decomposition is based on Gaussian Elimination | |
| * - No pivoting, will fail for pivots that are == 0 |
This file contains hidden or 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
| param( | |
| [Parameter(Position=0)] | |
| $Item, | |
| [Switch] $WhatIf, | |
| [String] $AppConfig = "$env:HOMEDRIVE$env:HOMEPATH\AppConfig", | |
| [String] $BaseDir = ".", | |
| [Parameter(ParameterSetName="register")] | |
| [Switch] | |
| $Register, |
This file contains hidden or 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
| build does require( | |
| @"psr\struct.pxs", | |
| @"psr\console.pxs", | |
| @"psr\csp.pxs", | |
| @"psr\queue.pxs", | |
| ); | |
| function create_tracer() { | |
| chans( | |
| var shutdown_c, |
NewerOlder