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
| 10672516x: inox.ast.Expressions.Variable | |
| 3104508x: inox.ast.Expressions.ADTSelector | |
| 2849013x: inox.ast.Expressions.Not | |
| 2778717x: inox.ast.Expressions.AsInstanceOf | |
| 1829754x: inox.ast.Expressions.FunctionInvocation | |
| 1638668x: inox.ast.Expressions.Let | |
| 1463700x: inox.ast.Expressions.IntegerLiteral | |
| 1434624x: inox.ast.Expressions.IsInstanceOf | |
| 1423687x: inox.ast.Expressions.Equals |
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
| find src/ include/ -type f \( -regex '.*\.[mh]' -o -regex '.*\.mm' -o -regex '.*\.[hc]pp' -o -regex '.*\.inl' \) -print0 | xargs -0 cat | wc -l |
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
| // | |
| // main.cpp | |
| // MiniRelation | |
| // | |
| // Created by Marco Antognini on 28/04/16. | |
| // Copyright © 2016 Marco Antognini. All rights reserved. | |
| // | |
| #include <algorithm> | |
| #include <cassert> |
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
| Homebrew build logs for z3 on Mac OS X 10.10.5 | |
| Build date: 2016-04-25 16:12:28 |
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
| VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Mar 9 2016 10:31:40) | |
| MacOS X (unix) version | |
| Included patches: 1-1468 | |
| Compiled by Homebrew | |
| Huge version without GUI. Features included (+) or not (-): | |
| +acl +farsi +mouse_netterm +tag_binary | |
| +arabic +file_in_path +mouse_sgr +tag_old_static | |
| +autocmd +find_in_path -mouse_sysmouse -tag_any_white | |
| -balloon_eval +float +mouse_urxvt -tcl | |
| -browse +folding +mouse_xterm +terminfo |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Label</key> | |
| <string>local.buildbot.slave</string> | |
| <key>ProgramArguments</key> | |
| <array> | |
| <string>/usr/local/bin/buildslave</string> |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>KeepAlive</key> | |
| <true/> | |
| <key>Label</key> | |
| <string>local.teamviewer-demonizer</string> | |
| <key>ProgramArguments</key> | |
| <array> |
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
| #!/bin/sh | |
| VERSION="2.5.0" | |
| VERSION_C="2.5" | |
| BUILD_CSFML=FALSE | |
| # BUILD_CSFML=TRUE | |
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
| import leon.lang._ | |
| case class Rational (n: BigInt, d: BigInt) { | |
| def +(that: Rational): Rational = { | |
| require(isRational && that.isRational) | |
| Rational(n * that.d + that.n * d, d * that.d) | |
| } ensuring { _.isRational } | |
| def *(that: Rational): Rational = { |
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
| ,---.| | | | |
| `---.|---.,---.,---.| ,---.|__/ | |
| || ||---'| | | || \ | |
| `---'` '`---'` `---'`---'` ` | |
| Sherlok Server v. 224af9bc74 | |
| INFO Done loading from local File store (local_repo): 11 bundles, 29 engines, 16 pipelines [o.s.Controller 14:50:22] | |
| == Spark has ignited ... | |
| >> Listening on 0.0.0.0:9600 | |
| WARN Could not validate integrity of download from file:/Users/m/.m2/repository/ch/epfl/bbp/nlp/bluima_commons/1.0.2-SNAPSHOT/bluima_commons-1.0.2-SNAPSHOT.pom: Checksum validation failed, no checksums available [o.e.a.i.i.WarnChecksumPolicy 14:50:35] |