hexsha stringlengths 40 40 | size int64 7 1.05M | ext stringclasses 13
values | lang stringclasses 1
value | max_stars_repo_path stringlengths 4 269 | max_stars_repo_name stringlengths 5 108 | max_stars_repo_head_hexsha stringlengths 40 40 | max_stars_repo_licenses listlengths 1 9 | max_stars_count int64 1 191k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 4 269 | max_issues_repo_name stringlengths 5 116 | max_issues_repo_head_hexsha stringlengths 40 40 | max_issues_repo_licenses listlengths 1 9 | max_issues_count int64 1 67k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 4 269 | max_forks_repo_name stringlengths 5 116 | max_forks_repo_head_hexsha stringlengths 40 40 | max_forks_repo_licenses listlengths 1 9 | max_forks_count int64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 7 1.05M | avg_line_length float64 1.21 330k | max_line_length int64 6 990k | alphanum_fraction float64 0.01 0.99 | author_id stringlengths 2 40 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
73de25216439e8b17bb864db8dcabf0326775582 | 6,610 | hpp | C++ | posu/units/system/si/length.hpp | zhu48/posu | 4872bd7572485c1c352aaf5db7a99d578a682113 | [
"MIT"
] | null | null | null | posu/units/system/si/length.hpp | zhu48/posu | 4872bd7572485c1c352aaf5db7a99d578a682113 | [
"MIT"
] | 33 | 2020-12-14T02:50:22.000Z | 2022-03-08T03:20:15.000Z | posu/units/system/si/length.hpp | zhu48/posu | 4872bd7572485c1c352aaf5db7a99d578a682113 | [
"MIT"
] | null | null | null | #ifndef POSU_UNITS_SI_LENGTH_HPP
#define POSU_UNITS_SI_LENGTH_HPP
#include "posu/units/base_unit.hpp"
#include "posu/units/system/length.hpp"
namespace posu::units::si {
struct length : public posu::units::length {
using type = length;
using kind_type = posu::units::length;
using pe... | 45.586207 | 96 | 0.626929 | zhu48 |
73e0230b560b6ddb53e4e17bac6c277a9bb535d4 | 5,264 | cpp | C++ | rpgtools/common/util.cpp | lfairy/rpgtools | ccfa607e93c85db062185d8ca85d0f637f00c2fa | [
"MIT"
] | null | null | null | rpgtools/common/util.cpp | lfairy/rpgtools | ccfa607e93c85db062185d8ca85d0f637f00c2fa | [
"MIT"
] | null | null | null | rpgtools/common/util.cpp | lfairy/rpgtools | ccfa607e93c85db062185d8ca85d0f637f00c2fa | [
"MIT"
] | null | null | null | #include "util.h"
#if defined OS_W32
#include <shellapi.h>
#elif defined OS_UNIX
#include <sys/types.h>
#include <sys/stat.h>
#include <ftw.h>
#include <dirent.h>
#include <unistd.h>
#endif
#include <stdexcept>
#include <algorithm>
#include <cassert>
namespace Util
{
/* PRIVATE FUNCS */
static inline bool isDotOrDot... | 23.605381 | 111 | 0.615502 | lfairy |
73e053b5d6f73d41552c65e5a4176f8332d9a4a2 | 6,381 | cc | C++ | Boss2D/addon/_old/webrtc-qt5.11.2_for_boss/modules/audio_processing/transient/file_utils.cc | Yash-Wasalwar-07/Boss2D | 37c5ba0f1c83c89810359a207cabfa0905f803d2 | [
"MIT"
] | null | null | null | Boss2D/addon/_old/webrtc-qt5.11.2_for_boss/modules/audio_processing/transient/file_utils.cc | Yash-Wasalwar-07/Boss2D | 37c5ba0f1c83c89810359a207cabfa0905f803d2 | [
"MIT"
] | null | null | null | Boss2D/addon/_old/webrtc-qt5.11.2_for_boss/modules/audio_processing/transient/file_utils.cc | Yash-Wasalwar-07/Boss2D | 37c5ba0f1c83c89810359a207cabfa0905f803d2 | [
"MIT"
] | null | null | null | /*
* Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contribut... | 24.637066 | 120 | 0.605861 | Yash-Wasalwar-07 |
73e1017d4be186a4865b9335a395010020a78fad | 685 | cpp | C++ | thinking-in-cpp/code/2-6-algorithm2.cpp | liphx/cplusplus | 65df073dc92fa58947e5ff728fc63db839e12760 | [
"MIT"
] | null | null | null | thinking-in-cpp/code/2-6-algorithm2.cpp | liphx/cplusplus | 65df073dc92fa58947e5ff728fc63db839e12760 | [
"MIT"
] | null | null | null | thinking-in-cpp/code/2-6-algorithm2.cpp | liphx/cplusplus | 65df073dc92fa58947e5ff728fc63db839e12760 | [
"MIT"
] | null | null | null | #include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
template<typename T>
void print(vector<T>& data){
for(auto x: data){
cout << x << " ";
}
cout << endl;
}
int main()
{
vector<int>data(10);
//填充
fill(data.begin(), data.end(), 7);
print(data);
//=>7 ... | 19.027778 | 69 | 0.50219 | liphx |
73e1e02b5d1d21159b65c79e5956a29fc1f3f655 | 5,124 | cpp | C++ | src/openms/source/METADATA/SourceFile.cpp | freestyle076/MyOpenMS | 99a484ce8fe598a95934e782f3ec47acab33c013 | [
"Zlib",
"Apache-2.0"
] | 1 | 2018-03-06T14:12:09.000Z | 2018-03-06T14:12:09.000Z | src/openms/source/METADATA/SourceFile.cpp | freestyle076/MyOpenMS | 99a484ce8fe598a95934e782f3ec47acab33c013 | [
"Zlib",
"Apache-2.0"
] | null | null | null | src/openms/source/METADATA/SourceFile.cpp | freestyle076/MyOpenMS | 99a484ce8fe598a95934e782f3ec47acab33c013 | [
"Zlib",
"Apache-2.0"
] | null | null | null | // --------------------------------------------------------------------------
// OpenMS -- Open-Source Mass Spectrometry
// --------------------------------------------------------------------------
// Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
// ETH Zurich, and Freie Universit... | 29.28 | 84 | 0.653005 | freestyle076 |
73e2127a631faa11deb27e3ef93b5d8ec89a6c9e | 540 | cpp | C++ | examples/ftqc_qrt/ctrl_kernel.cpp | ausbin/qcor | e9e0624a0e14b1b980ce9265b71c9b394abc60a8 | [
"BSD-3-Clause"
] | 59 | 2019-08-22T18:40:38.000Z | 2022-03-09T04:12:42.000Z | examples/ftqc_qrt/ctrl_kernel.cpp | ausbin/qcor | e9e0624a0e14b1b980ce9265b71c9b394abc60a8 | [
"BSD-3-Clause"
] | 137 | 2019-09-13T15:50:18.000Z | 2021-12-06T14:19:46.000Z | examples/ftqc_qrt/ctrl_kernel.cpp | ausbin/qcor | e9e0624a0e14b1b980ce9265b71c9b394abc60a8 | [
"BSD-3-Clause"
] | 26 | 2019-07-08T17:30:35.000Z | 2021-12-03T16:24:12.000Z | __qpu__ void ccnot(qreg q) {
for (int i = 0; i < 8; ++i) {
print("Initial state:", i);
for (int j = 0; j < 3; ++j) {
// set initial state
if (i & (1 << j)) {
X(q[j]);
}
}
// CCNOT
X::ctrl({q[0], q[1]}, q[2]);
print("Measure:");
for (int i = 0; i < q.size(); ++i) {... | 18.62069 | 40 | 0.405556 | ausbin |
73e2f14b884ec309789055c7348f945d1c8a5466 | 9,390 | cpp | C++ | robot-server/videocontrol.cpp | LejuRobotics/Aelos-Vision-Demo | 0b4ad1338bd018e8107533a7164d00442ff1d394 | [
"Apache-2.0"
] | 6 | 2018-10-23T07:28:35.000Z | 2020-02-06T02:19:40.000Z | robot-server/videocontrol.cpp | LejuRobotics/Aelos-Vision-Demo | 0b4ad1338bd018e8107533a7164d00442ff1d394 | [
"Apache-2.0"
] | null | null | null | robot-server/videocontrol.cpp | LejuRobotics/Aelos-Vision-Demo | 0b4ad1338bd018e8107533a7164d00442ff1d394 | [
"Apache-2.0"
] | 3 | 2018-12-25T08:34:15.000Z | 2020-04-16T07:03:00.000Z | /**
* @file VideoControl.cpp
* @version 1.0
* @date 2017年07月08日
* @author C_Are
* @copyright Leju
*
* @brief 接收摄像头图像,VideoControl类的cpp文件
*/
#include "VideoControl.h"
/**
* @brief VideoControl类的构造函数
* @param parent 父对象
*/
VideoControl::VideoControl(QObject *parent) : QThrea... | 25.106952 | 117 | 0.54164 | LejuRobotics |
73e3e3c88e0da6f8ec8718532acb7b52c587f1ca | 45,577 | hpp | C++ | pgfe/connection.hpp | dmitigr/cefeika | 6189843d4244f7334558708e57e952584561b1e0 | [
"Zlib"
] | 19 | 2019-07-21T15:38:12.000Z | 2022-01-06T05:24:48.000Z | pgfe/connection.hpp | dmitigr/cefeika | 6189843d4244f7334558708e57e952584561b1e0 | [
"Zlib"
] | 6 | 2019-12-07T22:12:37.000Z | 2022-01-10T22:31:48.000Z | pgfe/connection.hpp | dmitigr/cefeika | 6189843d4244f7334558708e57e952584561b1e0 | [
"Zlib"
] | 1 | 2019-08-15T14:49:00.000Z | 2019-08-15T14:49:00.000Z | // -*- C++ -*-
// Copyright (C) 2021 Dmitry Igrishin
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages
// arising from the use of this software.
//
// Permission is granted to anyone to use this software for any purpose,
// i... | 31.345942 | 128 | 0.647542 | dmitigr |
73e4e515deb920262768a606cf5fb5ae3e23cfd2 | 4,518 | hpp | C++ | crogine/include/crogine/graphics/DepthTexture.hpp | fallahn/crogine | f6cf3ade1f4e5de610d52e562bf43e852344bca0 | [
"FTL",
"Zlib"
] | 41 | 2017-08-29T12:14:36.000Z | 2022-02-04T23:49:48.000Z | crogine/include/crogine/graphics/DepthTexture.hpp | fallahn/crogine | f6cf3ade1f4e5de610d52e562bf43e852344bca0 | [
"FTL",
"Zlib"
] | 11 | 2017-09-02T15:32:45.000Z | 2021-12-27T13:34:56.000Z | crogine/include/crogine/graphics/DepthTexture.hpp | fallahn/crogine | f6cf3ade1f4e5de610d52e562bf43e852344bca0 | [
"FTL",
"Zlib"
] | 5 | 2020-01-25T17:51:45.000Z | 2022-03-01T05:20:30.000Z | /*-----------------------------------------------------------------------
Matt Marchant 2017 - 2020
http://trederia.blogspot.com
crogine - Zlib license.
This software is provided 'as-is', without any express or
implied warranty.In no event will the authors be held
liable for any damages arising from the use of this ... | 34.48855 | 96 | 0.644754 | fallahn |
73e54077cf7e68f53a562dbc59905cf33861de80 | 12,419 | cpp | C++ | applis/OLD-EtalonnagePolygone-OLD/ExeConvertPolygone.cpp | kikislater/micmac | 3009dbdad62b3ad906ec882b74b85a3db86ca755 | [
"CECILL-B"
] | 451 | 2016-11-25T09:40:28.000Z | 2022-03-30T04:20:42.000Z | applis/OLD-EtalonnagePolygone-OLD/ExeConvertPolygone.cpp | kikislater/micmac | 3009dbdad62b3ad906ec882b74b85a3db86ca755 | [
"CECILL-B"
] | 143 | 2016-11-25T20:35:57.000Z | 2022-03-01T11:58:02.000Z | applis/OLD-EtalonnagePolygone-OLD/ExeConvertPolygone.cpp | kikislater/micmac | 3009dbdad62b3ad906ec882b74b85a3db86ca755 | [
"CECILL-B"
] | 139 | 2016-12-02T10:26:21.000Z | 2022-03-10T19:40:29.000Z | /*Header-MicMac-eLiSe-25/06/2007
MicMac : Multi Image Correspondances par Methodes Automatiques de Correlation
eLiSe : ELements of an Image Software Environnement
www.micmac.ign.fr
Copyright : Institut Geographique National
Author : Marc Pierrot Deseilligny
Contributors : Gregoire Maille... | 26.311441 | 86 | 0.597552 | kikislater |
73e6085209d8051c08f3c08df5a994e9e1d7d8af | 2,901 | cpp | C++ | parse_stdin.cpp | Payshare/cpptoml | 5361e1c2eb2e00ac6566cfc973a1f9508f447b85 | [
"MIT"
] | 1 | 2015-07-01T19:19:51.000Z | 2015-07-01T19:19:51.000Z | parse_stdin.cpp | Payshare/cpptoml | 5361e1c2eb2e00ac6566cfc973a1f9508f447b85 | [
"MIT"
] | null | null | null | parse_stdin.cpp | Payshare/cpptoml | 5361e1c2eb2e00ac6566cfc973a1f9508f447b85 | [
"MIT"
] | null | null | null | #include "cpptoml.h"
#include <iostream>
#include <limits>
std::string escape_string(const std::string& str)
{
std::string res;
for (auto it = str.begin(); it != str.end(); ++it)
{
if (*it == '\\')
res += "\\\\";
else if (*it == '"')
res += "\\\"";
else if (... | 23.778689 | 77 | 0.403999 | Payshare |
73e6e9fc41471c056481c6cd4192305363441bd2 | 2,667 | hpp | C++ | src/model/game/states/notstartedstate.hpp | vanderpluijmg/tetris_cpp | e7f8f5dfe1eba6bf97caeb0c10e371e9431e5068 | [
"MIT"
] | null | null | null | src/model/game/states/notstartedstate.hpp | vanderpluijmg/tetris_cpp | e7f8f5dfe1eba6bf97caeb0c10e371e9431e5068 | [
"MIT"
] | null | null | null | src/model/game/states/notstartedstate.hpp | vanderpluijmg/tetris_cpp | e7f8f5dfe1eba6bf97caeb0c10e371e9431e5068 | [
"MIT"
] | null | null | null | // MIT License
//
// Copyright (c) 2022 Andrew SASSOYE, Constantin GUNDUZ, Gregory VAN DER PLUIJM,
// Thomas LEUTSCHER
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restrictio... | 30.655172 | 81 | 0.674166 | vanderpluijmg |
73e745c2311ee153fdf4f6f0cf3b0c4f13dc3894 | 32,460 | cpp | C++ | src/toast/_libtoast_math_qarray.cpp | ziotom78/toast | 66aef04c833a28f0928a0bbc221da45882aae475 | [
"BSD-2-Clause"
] | null | null | null | src/toast/_libtoast_math_qarray.cpp | ziotom78/toast | 66aef04c833a28f0928a0bbc221da45882aae475 | [
"BSD-2-Clause"
] | null | null | null | src/toast/_libtoast_math_qarray.cpp | ziotom78/toast | 66aef04c833a28f0928a0bbc221da45882aae475 | [
"BSD-2-Clause"
] | null | null | null |
// Copyright (c) 2015-2019 by the parties listed in the AUTHORS file.
// All rights reserved. Use of this source code is governed by
// a BSD-style license that can be found in the LICENSE file.
#include <_libtoast.hpp>
void init_math_qarray(py::module & m) {
// Quaternion arrays
m.def(
"qa_inv", ... | 40.881612 | 79 | 0.54353 | ziotom78 |
73e83179d11d390d3263c88821651c36b54d8392 | 613 | hpp | C++ | pythran/pythonic/numpy/bool_.hpp | davidbrochart/pythran | 24b6c8650fe99791a4091cbdc2c24686e86aa67c | [
"BSD-3-Clause"
] | 1,647 | 2015-01-13T01:45:38.000Z | 2022-03-28T01:23:41.000Z | pythran/pythonic/numpy/bool_.hpp | davidbrochart/pythran | 24b6c8650fe99791a4091cbdc2c24686e86aa67c | [
"BSD-3-Clause"
] | 1,116 | 2015-01-01T09:52:05.000Z | 2022-03-18T21:06:40.000Z | pythran/pythonic/numpy/bool_.hpp | davidbrochart/pythran | 24b6c8650fe99791a4091cbdc2c24686e86aa67c | [
"BSD-3-Clause"
] | 180 | 2015-02-12T02:47:28.000Z | 2022-03-14T10:28:18.000Z | #ifndef PYTHONIC_NUMPY_BOOL_HPP
#define PYTHONIC_NUMPY_BOOL_HPP
#include "pythonic/include/numpy/bool_.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/utils/meta.hpp"
#include "pythonic/utils/numpy_traits.hpp"
#include "pythonic/types/numpy_op_helper.hpp"
PYTHONIC_NS_BEGIN
namespace numpy
{
namespa... | 16.131579 | 45 | 0.729201 | davidbrochart |
73eabcb4063b9c47087a31a241b3dcca5309cafb | 2,331 | cpp | C++ | tinydui/base/kpopuptipwnd.cpp | haomiao/tinydui | e425d930a1045f99d9e407844a448c4a5c8c104d | [
"MIT"
] | null | null | null | tinydui/base/kpopuptipwnd.cpp | haomiao/tinydui | e425d930a1045f99d9e407844a448c4a5c8c104d | [
"MIT"
] | null | null | null | tinydui/base/kpopuptipwnd.cpp | haomiao/tinydui | e425d930a1045f99d9e407844a448c4a5c8c104d | [
"MIT"
] | null | null | null | #include "kpch.h"
#include "kpopuptipwnd.h"
namespace TinyDui
{
KPopupTipWnd::KPopupTipWnd()
{
}
KPopupTipWnd::~KPopupTipWnd()
{
ReleaseResources();
}
LRESULT KPopupTipWnd::OnPaint(WPARAM wParam, LPARAM lParam, BOOL& bHandled)
{
if (!(m_hWnd && ::IsWindow(m_hWnd)))
{
return 0;
}
RECT... | 17.139706 | 81 | 0.673531 | haomiao |
73ee26f17719fc968feaee5afd906e1b63fe2489 | 46,486 | cc | C++ | facerecognitionlibrary/jni-build/jni/genfiles/tensorflow/core/framework/device_attributes.pb.cc | ikaee/bfr-attendant | 15e5a00d0dcb39b2903988658e3424b19bbc5a9f | [
"Apache-2.0"
] | 5 | 2018-03-22T06:56:15.000Z | 2018-09-04T02:41:35.000Z | facerecognitionlibrary/jni-build/jni/genfiles/tensorflow/core/framework/device_attributes.pb.cc | ikaee/bfr-attendant | 15e5a00d0dcb39b2903988658e3424b19bbc5a9f | [
"Apache-2.0"
] | null | null | null | facerecognitionlibrary/jni-build/jni/genfiles/tensorflow/core/framework/device_attributes.pb.cc | ikaee/bfr-attendant | 15e5a00d0dcb39b2903988658e3424b19bbc5a9f | [
"Apache-2.0"
] | 2 | 2018-05-16T10:40:26.000Z | 2020-08-25T09:05:23.000Z | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow/core/framework/device_attributes.proto
#define INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION
#include "tensorflow/core/framework/device_attributes.pb.h"
#include <algorithm>
#include <google/protobuf/stubs/common.h>
#include <google/pro... | 37.855049 | 122 | 0.730456 | ikaee |
73f03a35bda1f124aacf91743b48f77502f19440 | 1,147 | cpp | C++ | leetcode/30days-challenge/202004/day4.cpp | wingkwong/competitive-programming | e8bf7aa32e87b3a020b63acac20e740728764649 | [
"MIT"
] | 18 | 2020-08-27T05:27:50.000Z | 2022-03-08T02:56:48.000Z | leetcode/30days-challenge/202004/day4.cpp | wingkwong/competitive-programming | e8bf7aa32e87b3a020b63acac20e740728764649 | [
"MIT"
] | null | null | null | leetcode/30days-challenge/202004/day4.cpp | wingkwong/competitive-programming | e8bf7aa32e87b3a020b63acac20e740728764649 | [
"MIT"
] | 1 | 2020-10-13T05:23:58.000Z | 2020-10-13T05:23:58.000Z | /*
Move Zeroes
Given an array nums, write a function to move all 0's to the end of it while maintaining the relative order of the non-zero elements.
Example:
Input: [0,1,0,3,12]
Output: [1,3,12,0,0]
Note:
You must do this in-place without making a copy of the array.
Minimize the total number of operations.
*/
class... | 29.410256 | 133 | 0.530078 | wingkwong |
73f4ffad79b1e4134e31ba1eeb2949288d2ede42 | 9,980 | cpp | C++ | pytorch_blade/src/compiler/mlir/runtime/ral_context.cpp | alibaba/BladeDISC | 1ce7f144995bc649bc49deaf974f5b5b2f369a19 | [
"Apache-2.0"
] | 328 | 2021-12-20T03:29:35.000Z | 2022-03-31T14:27:23.000Z | pytorch_blade/src/compiler/mlir/runtime/ral_context.cpp | alibaba/BladeDISC | 1ce7f144995bc649bc49deaf974f5b5b2f369a19 | [
"Apache-2.0"
] | 82 | 2021-12-20T09:15:16.000Z | 2022-03-31T09:33:48.000Z | pytorch_blade/src/compiler/mlir/runtime/ral_context.cpp | alibaba/BladeDISC | 1ce7f144995bc649bc49deaf974f5b5b2f369a19 | [
"Apache-2.0"
] | 66 | 2021-12-21T17:28:27.000Z | 2022-03-29T12:08:34.000Z | // Copyright 2021 The BladeDISC Authors. All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable l... | 33.377926 | 80 | 0.708317 | alibaba |
73f978f5dfe772de0c40a955b1b0e7a17bfee469 | 26,817 | hpp | C++ | hpx/runtime/threads/threadmanager_impl.hpp | andreasbuhr/hpx | 4366a90aacbd3e95428a94ab24a1646a67459cc2 | [
"BSL-1.0"
] | null | null | null | hpx/runtime/threads/threadmanager_impl.hpp | andreasbuhr/hpx | 4366a90aacbd3e95428a94ab24a1646a67459cc2 | [
"BSL-1.0"
] | null | null | null | hpx/runtime/threads/threadmanager_impl.hpp | andreasbuhr/hpx | 4366a90aacbd3e95428a94ab24a1646a67459cc2 | [
"BSL-1.0"
] | null | null | null | // Copyright (c) 2007-2013 Hartmut Kaiser
// Copyright (c) 2007-2009 Chirag Dekate, Anshul Tandon
// Copyright (c) 2011 Bryce Lelbach, Katelyn Kufahl
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#if... | 48.318919 | 95 | 0.594175 | andreasbuhr |
73fac5c56124e8d75dc9e1a5febabce4a7852710 | 334 | cpp | C++ | region/region.cpp | lhb8125/unstructured_frame | 3f28879cd7eb69e5fd9d5e812b6b36b6186125fe | [
"Apache-2.0"
] | null | null | null | region/region.cpp | lhb8125/unstructured_frame | 3f28879cd7eb69e5fd9d5e812b6b36b6186125fe | [
"Apache-2.0"
] | null | null | null | region/region.cpp | lhb8125/unstructured_frame | 3f28879cd7eb69e5fd9d5e812b6b36b6186125fe | [
"Apache-2.0"
] | null | null | null | /**
* @file:
* @author: Liu Hongbin
* @brief:
* @date: 2019-10-14 09:17:17
* @last Modified by: lenovo
* @last Modified time: 2019-10-14 09:18:49
*/
// #include "mesh.hpp"
// class Region
// {
// private:
// Mesh mesh;
// public:
// Region();
// ~Region();
// Mesh& getMesh(){return this->mes... | 16.7 | 43 | 0.526946 | lhb8125 |
73fb79c5428e35d7f23f2935dfae45c6acbd3656 | 843 | cpp | C++ | BlackVision/LibCore/Source/Threading/ThreadsBarrier.cpp | black-vision-engine/bv-engine | 85089d41bb22afeaa9de070646e12aa1777ecedf | [
"MIT"
] | 1 | 2022-01-28T11:43:47.000Z | 2022-01-28T11:43:47.000Z | BlackVision/LibCore/Source/Threading/ThreadsBarrier.cpp | black-vision-engine/bv-engine | 85089d41bb22afeaa9de070646e12aa1777ecedf | [
"MIT"
] | null | null | null | BlackVision/LibCore/Source/Threading/ThreadsBarrier.cpp | black-vision-engine/bv-engine | 85089d41bb22afeaa9de070646e12aa1777ecedf | [
"MIT"
] | null | null | null | /**
@file ThreadsBarrier.cpp
@author nieznanysprawiciel
@copyright File is part of Sleeping Wombat Libraries.
*/
#include "stdafxCore.h"
#include "ThreadsBarrier.h"
namespace bv
{
// ================================ //
//
ThreadsBarrier::ThreadsBarrier( UInt16 numThreads )
: m_numThreads( numThreads )
... | 15.611111 | 53 | 0.548043 | black-vision-engine |
73fcbe0f4914f11895c331bb6a2ac623c7038559 | 3,521 | cpp | C++ | src/add-ons/kernel/partitioning_systems/session/session.cpp | Kirishikesan/haiku | 835565c55830f2dab01e6e332cc7e2d9c015b51e | [
"MIT"
] | 1,338 | 2015-01-03T20:06:56.000Z | 2022-03-26T13:49:54.000Z | src/add-ons/kernel/partitioning_systems/session/session.cpp | Kirishikesan/haiku | 835565c55830f2dab01e6e332cc7e2d9c015b51e | [
"MIT"
] | 15 | 2015-01-17T22:19:32.000Z | 2021-12-20T12:35:00.000Z | src/add-ons/kernel/partitioning_systems/session/session.cpp | Kirishikesan/haiku | 835565c55830f2dab01e6e332cc7e2d9c015b51e | [
"MIT"
] | 350 | 2015-01-08T14:15:27.000Z | 2022-03-21T18:14:35.000Z | /*
* Copyright 2003 Tyler Akidau, haiku@akidau.net
* Distributed under the terms of the MIT License.
*/
/*! \file session.cpp
\brief Disk device manager partition module for CD/DVD sessions.
*/
#include <unistd.h>
#include <disk_device_manager/ddm_modules.h>
#include <disk_device_types.h>
#include <DiskDeviceT... | 25.330935 | 76 | 0.687021 | Kirishikesan |
73fcf2f85d42915ba9de15163c6b23342d346fad | 4,576 | hxx | C++ | include/graphics/nxglyphs.hxx | normanr/incubator-nuttx-apps | b5128c401f5c65f44298f46c3887d6bb57bfb90b | [
"Apache-2.0"
] | 132 | 2019-12-17T23:45:42.000Z | 2022-03-30T11:58:30.000Z | include/graphics/nxglyphs.hxx | normanr/incubator-nuttx-apps | b5128c401f5c65f44298f46c3887d6bb57bfb90b | [
"Apache-2.0"
] | 443 | 2020-01-01T03:06:24.000Z | 2022-03-31T08:57:35.000Z | include/graphics/nxglyphs.hxx | normanr/incubator-nuttx-apps | b5128c401f5c65f44298f46c3887d6bb57bfb90b | [
"Apache-2.0"
] | 232 | 2019-12-21T10:18:12.000Z | 2022-03-30T07:42:13.000Z | /****************************************************************************
* apps/include/graphics/nxwidgets/nxglyphs.hxx
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regardin... | 38.133333 | 78 | 0.697771 | normanr |
bab69cdfaa6c8515085cc9906a64d42e9ea76d0b | 3,131 | hpp | C++ | or-tools_Ubuntu-18.04-64bit_v7.4.7247/include/coin/CbcPartialNodeInfo.hpp | rajiff/docker-google-or-tools | b7a6c730639c5b47857925de9cf673b456cb4390 | [
"Apache-2.0"
] | 7 | 2020-07-04T01:50:12.000Z | 2021-06-03T21:54:52.000Z | PO_class/assignment_2/or-tools/include/coin/CbcPartialNodeInfo.hpp | ItamarRocha/Operations-Research | 55c4d54959555c3b9d54641e76eb6cfb2c011a2c | [
"MIT"
] | null | null | null | PO_class/assignment_2/or-tools/include/coin/CbcPartialNodeInfo.hpp | ItamarRocha/Operations-Research | 55c4d54959555c3b9d54641e76eb6cfb2c011a2c | [
"MIT"
] | null | null | null | // $Id$
// Copyright (C) 2002, International Business Machines
// Corporation and others. All Rights Reserved.
// This code is licensed under the terms of the Eclipse Public License (EPL).
// Edwin 11/24/09 carved from CbcNode
#ifndef CbcPartialNodeInfo_H
#define CbcPartialNodeInfo_H
#include <string>
#include <vec... | 26.760684 | 94 | 0.743213 | rajiff |
bab8aca869a02c603063980be639201d81e16f5b | 2,003 | cpp | C++ | Advent_of_Code/2017/Day25/Day25a.cpp | Elzei/show-off | fd6c46480160d795a7c1c833a798f3d49eddf144 | [
"MIT"
] | null | null | null | Advent_of_Code/2017/Day25/Day25a.cpp | Elzei/show-off | fd6c46480160d795a7c1c833a798f3d49eddf144 | [
"MIT"
] | null | null | null | Advent_of_Code/2017/Day25/Day25a.cpp | Elzei/show-off | fd6c46480160d795a7c1c833a798f3d49eddf144 | [
"MIT"
] | null | null | null | #include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include <string>
#include <tuple>
#include <algorithm>
#include <map>
using namespace std;
int main()
{
int state = 0;
int slot = 0;
int curval = 0;
map<int,int> tape;
int steps = 12523873;
do {
switch(state)... | 22.255556 | 44 | 0.35996 | Elzei |
bab9e604bd3859c40f31edb5e80eea27cda499b1 | 2,764 | cpp | C++ | ui_qt/src/paint_device_drawing.cpp | pierrebai/dak | 3da144aecfc941efe10abe0167b1d3a838a6a0d5 | [
"MIT"
] | null | null | null | ui_qt/src/paint_device_drawing.cpp | pierrebai/dak | 3da144aecfc941efe10abe0167b1d3a838a6a0d5 | [
"MIT"
] | null | null | null | ui_qt/src/paint_device_drawing.cpp | pierrebai/dak | 3da144aecfc941efe10abe0167b1d3a838a6a0d5 | [
"MIT"
] | 1 | 2021-01-14T07:19:55.000Z | 2021-01-14T07:19:55.000Z | #include <dak/ui/qt/paint_device_drawing.h>
#include <dak/ui/qt/convert.h>
#include <QtGui/qpainter.h>
#include <QtGui/qpainterpath.h>
namespace dak::ui::qt
{
paint_device_drawing_t& paint_device_drawing_t::draw_line(const point_t& from, const point_t& to)
{
QPainter tmp_painter(&paint_device);
pain... | 28.494845 | 129 | 0.675109 | pierrebai |
babbdc2315384ab392cf45f677c3cb02996c91c1 | 1,747 | cpp | C++ | 8. Backtracking/SubsetSUM.cpp | Vipulhere/DAA_CodingNinjas | 526ff9e5fa87cbc24666c1fb39d4861306d51ab6 | [
"MIT"
] | 2 | 2022-02-06T16:48:37.000Z | 2022-02-17T12:20:09.000Z | 8. Backtracking/SubsetSUM.cpp | Vipulhere/DAA_CodingNinjas | 526ff9e5fa87cbc24666c1fb39d4861306d51ab6 | [
"MIT"
] | null | null | null | 8. Backtracking/SubsetSUM.cpp | Vipulhere/DAA_CodingNinjas | 526ff9e5fa87cbc24666c1fb39d4861306d51ab6 | [
"MIT"
] | null | null | null | // #include <bits/stdc++.h>
// using namespace std;
// int subsetSum(int a[], int n, int sum)
// {
// // Initializing the matrix
// int tab[n + 1][sum + 1];
// // Initializing the first value of matrix
// tab[0][0] = 1;
// for (int i = 1; i <= sum; i++)
// tab[0][i] = 0;
// fo... | 20.797619 | 73 | 0.39668 | Vipulhere |
babe3fb506533a9ae158b2beb711436ffc538869 | 1,229 | cc | C++ | chrome/browser/policy/default_geolocation_policy_handler.cc | chromium/chromium | df46e572c3449a4b108d6e02fbe4f6d24cf98381 | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 14,668 | 2015-01-01T01:57:10.000Z | 2022-03-31T23:33:32.000Z | chrome/browser/policy/default_geolocation_policy_handler.cc | chromium/chromium | df46e572c3449a4b108d6e02fbe4f6d24cf98381 | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 86 | 2015-10-21T13:02:42.000Z | 2022-03-14T07:50:50.000Z | chrome/browser/policy/default_geolocation_policy_handler.cc | chromium/chromium | df46e572c3449a4b108d6e02fbe4f6d24cf98381 | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 5,941 | 2015-01-02T11:32:21.000Z | 2022-03-31T16:35:46.000Z | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/policy/default_geolocation_policy_handler.h"
#include "ash/components/arc/arc_prefs.h"
#include "base/values.h"
#include "compon... | 37.242424 | 80 | 0.786005 | chromium |
babf5eff613529f25b2711f9d34a02ecc25741d2 | 2,035 | cpp | C++ | modules/ocl/cv_context.cpp | DennissimOS/platform_external_libxcam | 97f8476916e67917026de4c6e43c12d2fa1d68c7 | [
"Apache-2.0"
] | 1 | 2022-02-14T09:32:03.000Z | 2022-02-14T09:32:03.000Z | modules/ocl/cv_context.cpp | DennissimOS/platform_external_libxcam | 97f8476916e67917026de4c6e43c12d2fa1d68c7 | [
"Apache-2.0"
] | null | null | null | modules/ocl/cv_context.cpp | DennissimOS/platform_external_libxcam | 97f8476916e67917026de4c6e43c12d2fa1d68c7 | [
"Apache-2.0"
] | null | null | null | /*
* cv_context.cpp - used to init_opencv_ocl once
*
* Copyright (c) 2016-2017 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses... | 24.518072 | 83 | 0.696806 | DennissimOS |
bac2b0e7804bb879c61a4aac7ced3a9f390c5c29 | 1,793 | cpp | C++ | lib/chainInsert.cpp | deltaclock/Trip_chooser | d663cfaf04fc126e6b24c2fa9cbf9cfed4d2c19a | [
"MIT"
] | null | null | null | lib/chainInsert.cpp | deltaclock/Trip_chooser | d663cfaf04fc126e6b24c2fa9cbf9cfed4d2c19a | [
"MIT"
] | null | null | null | lib/chainInsert.cpp | deltaclock/Trip_chooser | d663cfaf04fc126e6b24c2fa9cbf9cfed4d2c19a | [
"MIT"
] | null | null | null | #include "chain.hpp"
template <class T> Chain<T> &Chain<T>::Insert(int k, const T &x) {
// Insert x after the k'th element.
// Throw OutOfBounds exception if no k'th element.
// Pass NoMem exception if inadequate space.
if (k < 0)
throw std::out_of_range("Negative value..!!");
// p will eventually point ... | 26.367647 | 66 | 0.525934 | deltaclock |
bac5b7ab0c99d8806c7684fbe8b7b930fa3904eb | 13,580 | cpp | C++ | src/cpp/rtps/builtin/discovery/endpoint/EDPStatic.cpp | Jerry-2005/Fast-DDS | 60aa927778fc028c60970a08309dc3510455a166 | [
"Apache-2.0"
] | null | null | null | src/cpp/rtps/builtin/discovery/endpoint/EDPStatic.cpp | Jerry-2005/Fast-DDS | 60aa927778fc028c60970a08309dc3510455a166 | [
"Apache-2.0"
] | null | null | null | src/cpp/rtps/builtin/discovery/endpoint/EDPStatic.cpp | Jerry-2005/Fast-DDS | 60aa927778fc028c60970a08309dc3510455a166 | [
"Apache-2.0"
] | 1 | 2021-06-02T11:16:56.000Z | 2021-06-02T11:16:56.000Z | // Copyright 2016 Proyectos y Sistemas de Mantenimiento SL (eProsima).
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless re... | 35.549738 | 118 | 0.593888 | Jerry-2005 |
bac68912a6bea7516b356b3c7833ca646a3046a1 | 2,605 | cpp | C++ | src/Applications/Application_Enable_Light_Mode/Application_Enable_Light_Mode.cpp | gammasoft71/Examples_FLTK | 7d8f11d5da25f7279834d3730732d07e91591f7c | [
"MIT"
] | 21 | 2020-03-04T17:38:14.000Z | 2022-03-07T02:46:39.000Z | src/Applications/Application_Enable_Light_Mode/Application_Enable_Light_Mode.cpp | gammasoft71/Examples_FLTK | 7d8f11d5da25f7279834d3730732d07e91591f7c | [
"MIT"
] | null | null | null | src/Applications/Application_Enable_Light_Mode/Application_Enable_Light_Mode.cpp | gammasoft71/Examples_FLTK | 7d8f11d5da25f7279834d3730732d07e91591f7c | [
"MIT"
] | 6 | 2021-03-12T20:57:00.000Z | 2022-03-31T23:19:03.000Z | #include <initializer_list>
#include <map>
#include <string>
#include <FL/Fl.H>
#include <FL/Fl_Box.H>
#include <FL/Fl_Browser.H>
#include <FL/Fl_Button.H>
#include <FL/Fl_Choice.H>
#include <FL/Fl_Check_Button.H>
#include <FL/fl_draw.H>
#include <FL/fl_message.H>
#include <FL/Fl_Radio_Round_Button.H>
#include <FL/Fl_W... | 32.5625 | 135 | 0.647985 | gammasoft71 |
bac6fdf60707dbf2946f98bf073414e3912b685a | 8,709 | cc | C++ | tonic-suite/asr/src/gmmbin/gmm-latgen-map.cc | csb1024/djinn_csb | de50d6b6bc9c137e9f4b881de9048eba9e83142d | [
"BSD-3-Clause"
] | 59 | 2015-07-01T21:41:47.000Z | 2021-07-28T07:07:42.000Z | tonic-suite/asr/src/gmmbin/gmm-latgen-map.cc | csb1024/djinn_csb | de50d6b6bc9c137e9f4b881de9048eba9e83142d | [
"BSD-3-Clause"
] | 4 | 2016-01-24T13:25:03.000Z | 2021-07-06T09:10:23.000Z | tonic-suite/asr/src/gmmbin/gmm-latgen-map.cc | csb1024/djinn_csb | de50d6b6bc9c137e9f4b881de9048eba9e83142d | [
"BSD-3-Clause"
] | 54 | 2015-06-13T15:31:20.000Z | 2021-07-28T07:07:43.000Z | // gmmbin/gmm-latgen-map.cc
// Copyright 2012 Neha Agrawal, Cisco Systems;
// Johns Hopkins University (author: Daniel Povey)
// 2014 Guoguo Chen
// See ../../COPYING for clarification regarding multiple authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you m... | 37.217949 | 80 | 0.616489 | csb1024 |
bac88505a3020f47c8babc96ea0ca71095a3b909 | 3,073 | cc | C++ | src/Dataflow/Network/PortInterface.cc | Haydelj/SCIRun | f7ee04d85349b946224dbff183438663e54b9413 | [
"MIT"
] | 92 | 2015-02-09T22:42:11.000Z | 2022-03-25T09:14:50.000Z | src/Dataflow/Network/PortInterface.cc | Haydelj/SCIRun | f7ee04d85349b946224dbff183438663e54b9413 | [
"MIT"
] | 1,618 | 2015-01-05T19:39:13.000Z | 2022-03-27T20:28:45.000Z | src/Dataflow/Network/PortInterface.cc | Haydelj/SCIRun | f7ee04d85349b946224dbff183438663e54b9413 | [
"MIT"
] | 64 | 2015-02-20T17:51:23.000Z | 2021-11-19T07:08:08.000Z | /*
For more information, please see: http://software.sci.utah.edu
The MIT License
Copyright (c) 2020 Scientific Computing and Imaging Institute,
University of Utah.
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the ... | 28.990566 | 129 | 0.739017 | Haydelj |
bac91c25756e0cdbb2edf0c99e7c9fcb2b139720 | 239 | cc | C++ | tests/CompileTests/ElsaTestCases/t0033.cc | maurizioabba/rose | 7597292cf14da292bdb9a4ef573001b6c5b9b6c0 | [
"BSD-3-Clause"
] | 488 | 2015-01-09T08:54:48.000Z | 2022-03-30T07:15:46.000Z | tests/CompileTests/ElsaTestCases/t0033.cc | sujankh/rose-matlab | 7435d4fa1941826c784ba97296c0ec55fa7d7c7e | [
"BSD-3-Clause"
] | 174 | 2015-01-28T18:41:32.000Z | 2022-03-31T16:51:05.000Z | tests/CompileTests/ElsaTestCases/t0033.cc | sujankh/rose-matlab | 7435d4fa1941826c784ba97296c0ec55fa7d7c7e | [
"BSD-3-Clause"
] | 146 | 2015-04-27T02:48:34.000Z | 2022-03-04T07:32:53.000Z | // cc.in33
// calling constructors
class Foo {
public:
Foo(int x);
};
typedef class Foo FILE;
int main()
{
Foo f(3);
int x,y;
Foo g(x*y);
int exit(int);
// this one looks ambiguous at first blush
int fileno(FILE *f);
}
| 10.391304 | 44 | 0.606695 | maurizioabba |
bac98996ba05d5e8c6736ff31706070d537a5b95 | 548 | cc | C++ | ch03/sigmoid/main/main.cc | research-note/deep-learning-from-scratch-using-cpp | 5e11be85fa9c4c7672ce9c3ea2c5ffa8f27defd1 | [
"MIT"
] | 2 | 2021-08-15T12:38:41.000Z | 2021-08-15T12:38:51.000Z | ch03/sigmoid/main/main.cc | research-note/deep-learning-from-scratch-using-modern-cpp | 5e11be85fa9c4c7672ce9c3ea2c5ffa8f27defd1 | [
"MIT"
] | null | null | null | ch03/sigmoid/main/main.cc | research-note/deep-learning-from-scratch-using-modern-cpp | 5e11be85fa9c4c7672ce9c3ea2c5ffa8f27defd1 | [
"MIT"
] | null | null | null | /c *
* Build executable object file liking with cc_library lib file example.
*
* Copyright Bazel organization
*
*/
#include "lib/hello-time.h"
#include "main/sigmoid.hpp"
#include <iostream>
#include <string>
int main(int argc, char** argv) {
double x = -5.5, y = 4.3;
if (argc > 2) {
x = *argv[1... | 21.076923 | 72 | 0.556569 | research-note |
baca847ef9beb5a4ee7f80baa39033ee8b62fadc | 500 | cpp | C++ | 2-YellowBelt/week4/Assignment6/main.cpp | mamoudmatook/CPlusPlusInRussian | ef1f92e4880f24fe16fbcbef8dba3a2658d2208e | [
"MIT"
] | null | null | null | 2-YellowBelt/week4/Assignment6/main.cpp | mamoudmatook/CPlusPlusInRussian | ef1f92e4880f24fe16fbcbef8dba3a2658d2208e | [
"MIT"
] | null | null | null | 2-YellowBelt/week4/Assignment6/main.cpp | mamoudmatook/CPlusPlusInRussian | ef1f92e4880f24fe16fbcbef8dba3a2658d2208e | [
"MIT"
] | null | null | null | #include <iostream>
#include "PrintStats.h"
#include "median_age.h"
#include "DemographicIndicators.h"
using namespace std;
int main()
{
vector<Person> persons = {
{31, Gender::MALE, false},
{40, Gender::FEMALE, true},
{24, Gender::MALE, true},
{20, Gender::FEMALE, true},
{80... | 23.809524 | 36 | 0.574 | mamoudmatook |
bacd541c66319b366a947154f517e59a28aaa11e | 1,667 | cpp | C++ | source/engine/input/service/input_service.cpp | Coeurou/kairos_engine | b02eb302d7470d5f29b6ae342b2236dddaae91ea | [
"CC0-1.0"
] | null | null | null | source/engine/input/service/input_service.cpp | Coeurou/kairos_engine | b02eb302d7470d5f29b6ae342b2236dddaae91ea | [
"CC0-1.0"
] | null | null | null | source/engine/input/service/input_service.cpp | Coeurou/kairos_engine | b02eb302d7470d5f29b6ae342b2236dddaae91ea | [
"CC0-1.0"
] | null | null | null | #include <input/service/input_service.h>
#include <input/service/detail/input_service_helpers.h>
namespace kairos {
/** Member functions */
result<uint32> input_service::enable(input_device device) {
if (detail::enable(device)) {
return result<uint32>(EXIT_SUCCESS);
}
else {
r... | 32.686275 | 82 | 0.590282 | Coeurou |
bacde35bc59c9f200dcb533630ded58054f0548e | 1,373 | hpp | C++ | syswatcher/util/traverse.hpp | Jim-CodeHub/syswatcher | 57aa62c54fc1e5ab7b158e205ad0026631dc845a | [
"Apache-2.0"
] | null | null | null | syswatcher/util/traverse.hpp | Jim-CodeHub/syswatcher | 57aa62c54fc1e5ab7b158e205ad0026631dc845a | [
"Apache-2.0"
] | null | null | null | syswatcher/util/traverse.hpp | Jim-CodeHub/syswatcher | 57aa62c54fc1e5ab7b158e205ad0026631dc845a | [
"Apache-2.0"
] | null | null | null |
/**-----------------------------------------------------------------------------------------------------------------
* @file traverse.hpp
*
* Copyright (c) 2020-2020 Jim Zhang 303683086@qq.com
*------------------------------------------------------------------------------------------------------------------
*/
#... | 25.425926 | 116 | 0.187181 | Jim-CodeHub |
bacf63a415d62ca27bde83dcc3f802f11756a3b0 | 2,350 | cpp | C++ | intern/container/intern/CTR_List.cpp | wycivil08/blendocv | f6cce83e1f149fef39afa8043aade9c64378f33e | [
"Unlicense"
] | 30 | 2015-01-29T14:06:05.000Z | 2022-01-10T07:47:29.000Z | intern/container/intern/CTR_List.cpp | ttagu99/blendocv | f6cce83e1f149fef39afa8043aade9c64378f33e | [
"Unlicense"
] | 1 | 2017-02-20T20:57:48.000Z | 2018-12-19T23:44:38.000Z | intern/container/intern/CTR_List.cpp | ttagu99/blendocv | f6cce83e1f149fef39afa8043aade9c64378f33e | [
"Unlicense"
] | 15 | 2015-04-23T02:38:36.000Z | 2021-03-01T20:09:39.000Z | /*
* $Id: CTR_List.cpp 35146 2011-02-25 10:45:31Z jesterking $
* ***** BEGIN GPL LICENSE BLOCK *****
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, o... | 15.460526 | 74 | 0.646383 | wycivil08 |
bad0031db3f28d9034f4b5d0949eab3dd4907e67 | 13,988 | hpp | C++ | Merced/Src/two_step.hpp | brown170/fudge | 4f818b0e0b0de52bc127dd77285b20ce3568c97a | [
"BSD-3-Clause"
] | 14 | 2019-08-29T23:46:24.000Z | 2022-03-21T10:16:25.000Z | Merced/Src/two_step.hpp | brown170/fudge | 4f818b0e0b0de52bc127dd77285b20ce3568c97a | [
"BSD-3-Clause"
] | 1 | 2020-08-04T16:14:45.000Z | 2021-12-01T01:54:34.000Z | Merced/Src/two_step.hpp | brown170/fudge | 4f818b0e0b0de52bc127dd77285b20ce3568c97a | [
"BSD-3-Clause"
] | 2 | 2022-03-03T22:41:41.000Z | 2022-03-03T22:54:43.000Z | /*
* ******** merced: calculate the transfer matrix *********
* $Revision: 1 $
* $Date: 2018-10-23 $
* $Author: hedstrom $
* $Id: two_step.hpp 1 2018-10-23Z hedstrom $
*
* ******** merced: calculate the transfer matrix *********
*
* # <<BEGIN-copyright>>
* # <<END-copyright>>
*/
// define the classes used fo... | 38.323288 | 121 | 0.715899 | brown170 |
bad255be02a28e582c512938492400aeec8f75a5 | 2,210 | cpp | C++ | src/plugins/intel_gpu/src/kernel_selector/core/actual_kernels/pyramid_roi_align/pyramid_roi_align_kernel_base.cpp | pazamelin/openvino | b7e8ef910d7ed8e52326d14dc6fd53b71d16ed48 | [
"Apache-2.0"
] | 2,406 | 2020-04-22T15:47:54.000Z | 2022-03-31T10:27:37.000Z | inference-engine/thirdparty/clDNN/kernel_selector/core/actual_kernels/pyramid_roi_align/pyramid_roi_align_kernel_base.cpp | thomas-yanxin/openvino | 031e998a15ec738c64cc2379d7f30fb73087c272 | [
"Apache-2.0"
] | 4,948 | 2020-04-22T15:12:39.000Z | 2022-03-31T18:45:42.000Z | inference-engine/thirdparty/clDNN/kernel_selector/core/actual_kernels/pyramid_roi_align/pyramid_roi_align_kernel_base.cpp | thomas-yanxin/openvino | 031e998a15ec738c64cc2379d7f30fb73087c272 | [
"Apache-2.0"
] | 991 | 2020-04-23T18:21:09.000Z | 2022-03-31T18:40:57.000Z | // Copyright (C) 2018-2021 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//
#include "pyramid_roi_align_kernel_base.h"
#include "kernel_selector_utils.h"
#include <vector>
namespace kernel_selector {
JitConstants PyramidROIAlignKernelBase::GetJitConstants(const PyramidROIAlign_params& params) const {
... | 38.77193 | 123 | 0.691403 | pazamelin |
bad44bbb9957a79b51ae309b3ca782e696ea0679 | 9,017 | cc | C++ | third_party/blink/renderer/core/html/forms/date_time_field_element.cc | mghgroup/Glide-Browser | 6a4c1eaa6632ec55014fee87781c6bbbb92a2af5 | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | null | null | null | third_party/blink/renderer/core/html/forms/date_time_field_element.cc | mghgroup/Glide-Browser | 6a4c1eaa6632ec55014fee87781c6bbbb92a2af5 | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | null | null | null | third_party/blink/renderer/core/html/forms/date_time_field_element.cc | mghgroup/Glide-Browser | 6a4c1eaa6632ec55014fee87781c6bbbb92a2af5 | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 2 | 2021-01-05T23:43:46.000Z | 2021-01-07T23:36:34.000Z | /*
* Copyright (C) 2012 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of condition... | 35.640316 | 80 | 0.713319 | mghgroup |
bad735d6bf40a4c3a5a6d13a499703070d4316ff | 23 | cpp | C++ | clWrapper/clWrapper/clContext.cpp | JJPPeters/clWrapper | c8528d0c264bb4faf17b678f299dd3aa0e194141 | [
"MIT"
] | 1 | 2017-08-24T21:55:31.000Z | 2017-08-24T21:55:31.000Z | clWrapper/clWrapper/clContext.cpp | JJPPeters/clWrapper | c8528d0c264bb4faf17b678f299dd3aa0e194141 | [
"MIT"
] | null | null | null | clWrapper/clWrapper/clContext.cpp | JJPPeters/clWrapper | c8528d0c264bb4faf17b678f299dd3aa0e194141 | [
"MIT"
] | 1 | 2019-03-03T10:12:55.000Z | 2019-03-03T10:12:55.000Z | #include "clContext.h"
| 11.5 | 22 | 0.73913 | JJPPeters |
bad8c422920cab908305026d7c3739ffd36c8e0a | 21,728 | cpp | C++ | Source/Io/PodCircuit.cpp | glhrmfrts/Io | 2df31f550d3d8f0501f5de17290e781af5fcdcb3 | [
"MIT"
] | 2 | 2020-08-27T22:49:30.000Z | 2021-06-14T14:01:32.000Z | Source/Io/PodCircuit.cpp | glhrmfrts/Io | 2df31f550d3d8f0501f5de17290e781af5fcdcb3 | [
"MIT"
] | null | null | null | Source/Io/PodCircuit.cpp | glhrmfrts/Io | 2df31f550d3d8f0501f5de17290e781af5fcdcb3 | [
"MIT"
] | null | null | null | #include <stdexcept>
#include <Urho3D/Graphics/Texture2D.h>
#include <Urho3D/Resource/Image.h>
#include <Urho3D/Graphics/Model.h>
#include <Urho3D/Graphics/Material.h>
#include <Urho3D/Graphics/VertexBuffer.h>
#include <Urho3D/Graphics/IndexBuffer.h>
#include <Urho3D/Graphics/Geometry.h>
#include <Urho3D/Graphics/Techn... | 33.427692 | 121 | 0.669505 | glhrmfrts |
bad94f77d7514bc071b05cce93095a29327f2b82 | 6,677 | hpp | C++ | cpp/include/communication/ControlSettings.hpp | skydiveuas/skydive | 6a3ddb20210c7feec93c2124c99a764e91f13701 | [
"MIT"
] | 2 | 2017-12-09T22:44:35.000Z | 2018-04-08T11:51:53.000Z | cpp/include/communication/ControlSettings.hpp | skydiveuas/skydive | 6a3ddb20210c7feec93c2124c99a764e91f13701 | [
"MIT"
] | 1 | 2018-04-08T12:15:23.000Z | 2018-04-08T12:15:23.000Z | cpp/include/communication/ControlSettings.hpp | skydiveuas/skydive | 6a3ddb20210c7feec93c2124c99a764e91f13701 | [
"MIT"
] | 1 | 2018-04-08T11:50:43.000Z | 2018-04-08T11:50:43.000Z | // =========== roboLib ============
// === *** BARTOSZ NAWROT *** ===
// ================================
#ifndef __CONTROL_SETTINGS__
#define __CONTROL_SETTINGS__
#ifdef __SKYDIVE_USE_STL__
#include <string>
#include <vector>
#endif // __SKYDIVE_USE_STL__
#include "common/MathCore.hpp"
#include "ISignalPayloadM... | 28.054622 | 112 | 0.687584 | skydiveuas |
bad9ec28cb32916fa01c3ee8eba6532043d05f2a | 4,608 | cc | C++ | pigasus/software/src/codecs/ip/cd_auth.cc | zhipengzhaocmu/fpga2022_artifact | 0ac088a5b04c5c75ae6aef25202b66b0f674acd3 | [
"BSD-3-Clause-Clear",
"BSD-3-Clause"
] | null | null | null | pigasus/software/src/codecs/ip/cd_auth.cc | zhipengzhaocmu/fpga2022_artifact | 0ac088a5b04c5c75ae6aef25202b66b0f674acd3 | [
"BSD-3-Clause-Clear",
"BSD-3-Clause"
] | null | null | null | pigasus/software/src/codecs/ip/cd_auth.cc | zhipengzhaocmu/fpga2022_artifact | 0ac088a5b04c5c75ae6aef25202b66b0f674acd3 | [
"BSD-3-Clause-Clear",
"BSD-3-Clause"
] | null | null | null | //--------------------------------------------------------------------------
// Copyright (C) 2014-2018 Cisco and/or its affiliates. All rights reserved.
//
// This program is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License Version 2 as published
// by the Fr... | 27.266272 | 85 | 0.611328 | zhipengzhaocmu |
badb152f4e8efbfc9907013d1ef8955b90003682 | 5,384 | cc | C++ | remoting/client/jni/jni_frame_consumer.cc | kjthegod/chromium | cf940f7f418436b77e15b1ea23e6fa100ca1c91a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 1 | 2019-11-28T10:46:52.000Z | 2019-11-28T10:46:52.000Z | remoting/client/jni/jni_frame_consumer.cc | kjthegod/chromium | cf940f7f418436b77e15b1ea23e6fa100ca1c91a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | null | null | null | remoting/client/jni/jni_frame_consumer.cc | kjthegod/chromium | cf940f7f418436b77e15b1ea23e6fa100ca1c91a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 2 | 2015-03-27T11:15:39.000Z | 2016-08-17T14:19:56.000Z | // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "remoting/client/jni/jni_frame_consumer.h"
#include "base/android/jni_android.h"
#include "base/logging.h"
#include "base/stl_util.h"
#include "... | 39.881481 | 80 | 0.729198 | kjthegod |
badb85fe1210ee5f1d614cd0b64b68f433c0a827 | 1,618 | cpp | C++ | Electronics/Firmware/src/Program/Lib_Chicago/Debug/cmd.cpp | magicmellon/ProjectNorthStar | a7ab09aac9810055639f099f5a53bb1cb5496fb8 | [
"Apache-2.0"
] | 2 | 2018-08-18T20:27:29.000Z | 2018-11-19T20:21:26.000Z | Electronics/Firmware/src/Program/Lib_Chicago/Debug/cmd.cpp | magicmellon/ProjectNorthStar | a7ab09aac9810055639f099f5a53bb1cb5496fb8 | [
"Apache-2.0"
] | null | null | null | Electronics/Firmware/src/Program/Lib_Chicago/Debug/cmd.cpp | magicmellon/ProjectNorthStar | a7ab09aac9810055639f099f5a53bb1cb5496fb8 | [
"Apache-2.0"
] | null | null | null | /**
* @file cmd.cpp
*
* @brief Chicago UART command line interpreter
*
* @copyright
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation; either
* version 3.0 of the License, or (at your option) any l... | 29.418182 | 79 | 0.513597 | magicmellon |
badc323034d5416a16415f766707873a1302ff53 | 2,604 | cc | C++ | bench/SpMMFP32Benchmark.cc | menchunlei/FBGEMM | 588ecfcca3d83186461554cd28dedc41532d75b4 | [
"BSD-3-Clause"
] | null | null | null | bench/SpMMFP32Benchmark.cc | menchunlei/FBGEMM | 588ecfcca3d83186461554cd28dedc41532d75b4 | [
"BSD-3-Clause"
] | null | null | null | bench/SpMMFP32Benchmark.cc | menchunlei/FBGEMM | 588ecfcca3d83186461554cd28dedc41532d75b4 | [
"BSD-3-Clause"
] | null | null | null | /*
* Copyright (c) Facebook, Inc. and its affiliates.
* All rights reserved.
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
#include "bench/BenchUtils.h"
#include "fbgemm/FbgemmSpMM.h"
#include <iostream>
using namespace std;
u... | 29.258427 | 80 | 0.541859 | menchunlei |
bae057a39f0c8f59cb74cc9176e0361d754d51a0 | 251 | cpp | C++ | apps/bjt/main.cpp | Brillist/libutl | e55c2af091ba1101a1d0608db2830e279ec95d16 | [
"MIT"
] | 1 | 2021-09-14T06:12:58.000Z | 2021-09-14T06:12:58.000Z | apps/bjt/main.cpp | Brillist/libutl | e55c2af091ba1101a1d0608db2830e279ec95d16 | [
"MIT"
] | null | null | null | apps/bjt/main.cpp | Brillist/libutl | e55c2af091ba1101a1d0608db2830e279ec95d16 | [
"MIT"
] | 2 | 2019-05-13T23:04:31.000Z | 2021-09-14T06:12:59.000Z | #include "common.h"
#include <libutl/BufferedFDstream.h>
#include "BlackjackTrainer.h"
#include <libutl/Exception.h>
////////////////////////////////////////////////////////////////////////////////////////////////////
UTL_MAIN_RL(BlackjackTrainer);
| 27.888889 | 100 | 0.47012 | Brillist |
bae1d9d124b9b6db2cf54232dc5c732fc63e2a39 | 4,880 | hpp | C++ | include/nix/Feature.hpp | cgars/nix | 0bc4c32f173d2d34e19d1a02ee1e0183551bf160 | [
"BSD-3-Clause"
] | null | null | null | include/nix/Feature.hpp | cgars/nix | 0bc4c32f173d2d34e19d1a02ee1e0183551bf160 | [
"BSD-3-Clause"
] | null | null | null | include/nix/Feature.hpp | cgars/nix | 0bc4c32f173d2d34e19d1a02ee1e0183551bf160 | [
"BSD-3-Clause"
] | null | null | null | // Copyright (c) 2013, German Neuroinformatics Node (G-Node)
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted under the terms of the BSD License. See
// LICENSE file in the root of the Project.
#ifndef NIX_FEATURE_H
#define NIX_FEATURE_H... | 25.549738 | 106 | 0.609631 | cgars |
bae5e438c0aad34f5c03ef111022cfd704f9a1a5 | 3,582 | cc | C++ | cc/layers/delegated_frame_provider.cc | kjthegod/chromium | cf940f7f418436b77e15b1ea23e6fa100ca1c91a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 5 | 2015-04-30T00:13:21.000Z | 2019-07-10T02:17:24.000Z | cc/layers/delegated_frame_provider.cc | kjthegod/chromium | cf940f7f418436b77e15b1ea23e6fa100ca1c91a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | null | null | null | cc/layers/delegated_frame_provider.cc | kjthegod/chromium | cf940f7f418436b77e15b1ea23e6fa100ca1c91a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 2 | 2015-03-27T11:15:39.000Z | 2016-08-17T14:19:56.000Z | // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cc/layers/delegated_frame_provider.h"
#include "cc/layers/delegated_frame_resource_collection.h"
#include "cc/layers/delegated_renderer_layer.h... | 32.27027 | 80 | 0.747906 | kjthegod |
bae701112f00025e9cb3484bdc0a4517e95331d3 | 6,621 | cc | C++ | xapian/xapian-core-1.2.13/expand/ortermlist.cc | NeoYY/tailbench-v0.9 | cf9849c3e8c407199f25b4710c06fb8c4e2ff025 | [
"MIT"
] | 2 | 2021-01-13T21:17:42.000Z | 2021-01-13T21:17:42.000Z | xapian/xapian-core-1.2.13/expand/ortermlist.cc | Loslove55/tailbench | fbbf3f31e3f0af1bb7db7f07c2e7193b84abb1eb | [
"MIT"
] | null | null | null | xapian/xapian-core-1.2.13/expand/ortermlist.cc | Loslove55/tailbench | fbbf3f31e3f0af1bb7db7f07c2e7193b84abb1eb | [
"MIT"
] | null | null | null | /** @file ortermlist.cc
* @brief Merge two TermList objects using an OR operation.
*/
/* Copyright (C) 2007,2010 Olly Betts
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version... | 27.5875 | 104 | 0.685697 | NeoYY |
bae81855c27b08a3e568512e0c2600a9c5c5e0bb | 1,130 | cpp | C++ | license-server/serverapp/appconfig_reader.cpp | stallion5632/license-services | e46be0a89fdee4037aa8804411b6ec135ce25887 | [
"MIT"
] | 1 | 2022-01-02T13:14:05.000Z | 2022-01-02T13:14:05.000Z | license-server/serverapp/appconfig_reader.cpp | stallion5632/license-services | e46be0a89fdee4037aa8804411b6ec135ce25887 | [
"MIT"
] | null | null | null | license-server/serverapp/appconfig_reader.cpp | stallion5632/license-services | e46be0a89fdee4037aa8804411b6ec135ce25887 | [
"MIT"
] | 1 | 2021-06-16T10:09:09.000Z | 2021-06-16T10:09:09.000Z | #include "appconfig_reader.h"
#include "common.h"
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/ini_parser.hpp>
#include <boost/algorithm/string.hpp>
#include <iostream>
using namespace boost;
static const char *kAppConfigRoot = "server";
static const char *kDogCheckInterval = "DogCheckInterv... | 26.27907 | 64 | 0.760177 | stallion5632 |
baea8ff00e547d1c898a68cbd6094098510a568b | 9,147 | cc | C++ | src/experiments/obrero/detectHand/IntegralImageTool.cc | robotology-legacy/yarp1 | 21434f5b776edea201b39a9644552dca59339dbc | [
"Artistic-1.0-Perl"
] | null | null | null | src/experiments/obrero/detectHand/IntegralImageTool.cc | robotology-legacy/yarp1 | 21434f5b776edea201b39a9644552dca59339dbc | [
"Artistic-1.0-Perl"
] | null | null | null | src/experiments/obrero/detectHand/IntegralImageTool.cc | robotology-legacy/yarp1 | 21434f5b776edea201b39a9644552dca59339dbc | [
"Artistic-1.0-Perl"
] | null | null | null | #ifndef YARP_OS_CONFIG
#define YARP_OS_CONFIG LINUX
#endif
#include <math.h>
#include <stdlib.h>
#include <yarp/YARPImage.h>
#include <yarp/YARPImageDraw.h>
#include "IntegralImageTool.h"
// Sweep summation horizontally and vertically
void GenerateSum(YARPImageOf<YarpPixelFloat>& src, YARPImageOf<YarpPixelFloat>& d... | 17.258491 | 97 | 0.51219 | robotology-legacy |
baece2ff34fa45d8cee9568c8a357ed4549996e7 | 2,903 | hxx | C++ | OCC/inc/BRep_CurveOnSurface.hxx | cy15196/FastCAE | 0870752ec2e590f3ea6479e909ebf6c345ac2523 | [
"BSD-3-Clause"
] | 117 | 2020-03-07T12:07:05.000Z | 2022-03-27T07:35:22.000Z | opencascade/BRep_CurveOnSurface.hxx | CadQuery/cpp-py-bindgen | 66e7376d3a27444393fc99acbdbef40bbc7031ae | [
"Apache-2.0"
] | 33 | 2019-11-13T18:09:51.000Z | 2021-11-26T17:24:12.000Z | opencascade/BRep_CurveOnSurface.hxx | CadQuery/cpp-py-bindgen | 66e7376d3a27444393fc99acbdbef40bbc7031ae | [
"Apache-2.0"
] | 76 | 2020-03-16T01:47:46.000Z | 2022-03-21T16:37:07.000Z | // Created on: 1993-07-06
// Created by: Remi LEQUETTE
// Copyright (c) 1993-1999 Matra Datavision
// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU ... | 28.184466 | 142 | 0.777816 | cy15196 |
baed5055259581319f61c941daa9626780ffd50d | 42,690 | cpp | C++ | src/Sprite.cpp | Tatsh/stepmania | bff04ba72e9d578e922fd830819515559b535c45 | [
"MIT"
] | 1 | 2019-02-13T07:01:27.000Z | 2019-02-13T07:01:27.000Z | src/Sprite.cpp | Tatsh/stepmania | bff04ba72e9d578e922fd830819515559b535c45 | [
"MIT"
] | null | null | null | src/Sprite.cpp | Tatsh/stepmania | bff04ba72e9d578e922fd830819515559b535c45 | [
"MIT"
] | null | null | null | #include "global.h"
#include <cassert>
#include <float.h>
#include "Sprite.h"
#include "RageTextureManager.h"
#include "XmlFile.h"
#include "RageLog.h"
#include "RageDisplay.h"
#include "RageTexture.h"
#include "RageTimer.h"
#include "RageUtil.h"
#include "ActorUtil.h"
#include "Foreach.h"
#include "LuaBinding.h"
#inc... | 31.228969 | 142 | 0.689365 | Tatsh |
baf1faf581420fe8cd5430043c5206a93c06f28b | 5,728 | cpp | C++ | XMall-Customer/cartrefreshwidget.cpp | XuanchenLi/XMall | 57b46d1245ebda880f3668754ac7364ce91ec62b | [
"MIT"
] | null | null | null | XMall-Customer/cartrefreshwidget.cpp | XuanchenLi/XMall | 57b46d1245ebda880f3668754ac7364ce91ec62b | [
"MIT"
] | null | null | null | XMall-Customer/cartrefreshwidget.cpp | XuanchenLi/XMall | 57b46d1245ebda880f3668754ac7364ce91ec62b | [
"MIT"
] | null | null | null | #include "cartrefreshwidget.h"
#include "ui_cartrefreshwidget.h"
#include "Service/HttpProxy.h"
#include "alertwindow.h"
#include <QJsonArray>
extern QString GET_HOST();
CartRefreshWidget::CartRefreshWidget(QWidget *parent) :
QWidget(parent),
ui(new Ui::CartRefreshWidget)
{
ui->setupUi(this);
connect(ui... | 26.396313 | 133 | 0.577689 | XuanchenLi |
baf2160706541874b372d974d08f39defcbd7575 | 372 | cpp | C++ | 0.1/Source.cpp | mikita-zhuryk/algorithms-data-structures | 1d18df36b5a0eaded229a1cd56408945e681725e | [
"MIT"
] | null | null | null | 0.1/Source.cpp | mikita-zhuryk/algorithms-data-structures | 1d18df36b5a0eaded229a1cd56408945e681725e | [
"MIT"
] | null | null | null | 0.1/Source.cpp | mikita-zhuryk/algorithms-data-structures | 1d18df36b5a0eaded229a1cd56408945e681725e | [
"MIT"
] | 1 | 2019-02-28T14:42:06.000Z | 2019-02-28T14:42:06.000Z | #include <fstream>
#include "../Data Structures/BinarySearchTree.h"
int main() {
int temp;
std::ifstream in("input.txt");
std::ofstream out("output.txt");
data_structures::BinarySearchTree<int> tree;
while (in >> temp) {
tree.add(temp);
}
std::function<void(int&)> print = [&out](int& key) { out << key << "\n"... | 24.8 | 76 | 0.658602 | mikita-zhuryk |
baf418c6c2fcec3d0f466807fda07ecd36fcfc1d | 4,020 | inl | C++ | jsc-v8-property-descriptor.cc.inl | louis-tru/v8-link | c29b2bc7625cd34df5de62d86df32cd1f1843eca | [
"BSD-3-Clause-Clear"
] | 3 | 2019-02-17T05:45:35.000Z | 2020-11-23T04:40:29.000Z | jsc-v8-property-descriptor.cc.inl | louis-tru/v8-link | c29b2bc7625cd34df5de62d86df32cd1f1843eca | [
"BSD-3-Clause-Clear"
] | null | null | null | jsc-v8-property-descriptor.cc.inl | louis-tru/v8-link | c29b2bc7625cd34df5de62d86df32cd1f1843eca | [
"BSD-3-Clause-Clear"
] | 2 | 2019-02-20T08:02:13.000Z | 2020-10-21T22:45:33.000Z | /* ***** BEGIN LICENSE BLOCK *****
* Distributed under the BSD license:
*
* Copyright (c) 2015, xuewen.chu
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of sourc... | 30.454545 | 82 | 0.727861 | louis-tru |
baf43e928fe56909655023c4310a4f6496448910 | 112,514 | cpp | C++ | src/node/src/core/init.cpp | VersumDEX/VersumClient | 55b5a0b88d824e885a518300c2b44d631b597e40 | [
"MIT"
] | null | null | null | src/node/src/core/init.cpp | VersumDEX/VersumClient | 55b5a0b88d824e885a518300c2b44d631b597e40 | [
"MIT"
] | null | null | null | src/node/src/core/init.cpp | VersumDEX/VersumClient | 55b5a0b88d824e885a518300c2b44d631b597e40 | [
"MIT"
] | null | null | null | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2016 The Bitcoin developers
// Original code was distributed under the MIT software license.
// Copyright (c) 2014-2017 Coin Sciences Ltd
// MultiChain code distributed under the GPLv3 license, see COPYING file.
#if defined(HAVE_CONFIG_H)
#include "conf... | 45.663149 | 281 | 0.563912 | VersumDEX |
baf5502ce60aae2b30afe33b1ecdf1a75ae7ea7f | 1,403 | hpp | C++ | src/integrator/direct.hpp | jkrueger/phosphorus | e36d3c4b81b4327a983469116f066fdeefc9104e | [
"MIT"
] | null | null | null | src/integrator/direct.hpp | jkrueger/phosphorus | e36d3c4b81b4327a983469116f066fdeefc9104e | [
"MIT"
] | null | null | null | src/integrator/direct.hpp | jkrueger/phosphorus | e36d3c4b81b4327a983469116f066fdeefc9104e | [
"MIT"
] | null | null | null | #pragma once
#include "math/ray.hpp"
#include "math/sampling.hpp"
#include "shading.hpp"
#include "thing.hpp"
#include "things/scene.hpp"
#include "util/color.hpp"
struct direct_t {
const uint32_t spd;
const uint32_t samples;
sample_t uv[9];
direct_t(uint32_t spd)
: spd(spd)
, samples(spd*spd) {
... | 23 | 62 | 0.634355 | jkrueger |
baf6893d8dccf3d3719cef61e41a8c1e23739d27 | 3,556 | cpp | C++ | control/magmablas_dsf77.cpp | supreethms1809/magma-2.2.0 | b713d0b0a7a4724847e3a4050987c5ea9e7a7279 | [
"BSD-3-Clause"
] | 31 | 2015-06-19T14:41:12.000Z | 2021-02-15T12:47:57.000Z | control/magmablas_dsf77.cpp | supreethms1809/magma-2.2.0 | b713d0b0a7a4724847e3a4050987c5ea9e7a7279 | [
"BSD-3-Clause"
] | 3 | 2020-01-02T05:21:16.000Z | 2020-01-07T20:04:05.000Z | control/magmablas_dsf77.cpp | supreethms1809/magma-2.2.0 | b713d0b0a7a4724847e3a4050987c5ea9e7a7279 | [
"BSD-3-Clause"
] | 17 | 2015-04-01T14:26:48.000Z | 2021-12-27T06:12:15.000Z | /*******************************************************************************
* This file is AUTOMATICALLY GENERATED by:
* ../tools/fortran_wrappers.pl ../include/magmablas_ds.i
* Do not edit.
******************************************************************************/
#include <stdint.h> // for uintptr_... | 28.222222 | 85 | 0.630484 | supreethms1809 |
baf89c02145dbd826e796b968ad81bb1dfeef649 | 4,905 | cpp | C++ | src/libs/messaging/msgQClient/src/msgQClient.cpp | kamranshamaei/tarsim | dcb0f28f7b1422ba125c85cd53a1420d69d466eb | [
"Apache-2.0"
] | 22 | 2019-03-01T01:41:53.000Z | 2022-02-28T03:57:40.000Z | src/libs/messaging/msgQClient/src/msgQClient.cpp | kamranshamaei/tarsim | dcb0f28f7b1422ba125c85cd53a1420d69d466eb | [
"Apache-2.0"
] | 5 | 2020-01-08T19:21:48.000Z | 2021-07-15T20:39:17.000Z | src/libs/messaging/msgQClient/src/msgQClient.cpp | kamranshamaei/tarsim | dcb0f28f7b1422ba125c85cd53a1420d69d466eb | [
"Apache-2.0"
] | 7 | 2019-03-01T02:59:11.000Z | 2022-02-17T14:08:11.000Z |
//
// @file:
//
// @Created on: Jul 22, 2017
// @Author: Kamran Shamaei
//
//
// @brief - implementation for MsgQClient
// <Requirement Doc Reference>
// <Design Doc Reference>
//
// @copyright Copyright Kamran Shamaei
// All Rights Reserved.
//
// This file is subject to the terms and conditions defined in
// file 'L... | 24.898477 | 93 | 0.596126 | kamranshamaei |
bafa42994ecccd1cd33714577c2ff9cf04bd19b3 | 5,558 | cpp | C++ | CENTRAL 3D/Source/Quadtree.cpp | AitorSimona/3DEngines | 01700230b4733e6976fb14971dcc835374f8db12 | [
"MIT"
] | 2 | 2020-01-20T12:28:42.000Z | 2020-05-10T23:06:58.000Z | CENTRAL 3D/Source/Quadtree.cpp | AitorSimona/3DEngines | 01700230b4733e6976fb14971dcc835374f8db12 | [
"MIT"
] | 3 | 2020-01-20T13:15:28.000Z | 2020-04-07T10:53:53.000Z | CENTRAL 3D/Source/Quadtree.cpp | AitorSimona/3DEngines | 01700230b4733e6976fb14971dcc835374f8db12 | [
"MIT"
] | 4 | 2019-10-22T20:56:48.000Z | 2021-01-10T14:24:43.000Z | #include "Globals.h"
#include "GameObject.h"
#include "ComponentTransform.h"
#include "QuadTree.h"
#include "mmgr/mmgr.h"
// --- All child indexes ---
#define NET 0
#define SET 1
#define SWT 2
#define NWT 3
#define NEB 4
#define SEB 5
#define SWB 6
#define NWB 7
// --- Max items before subdividing ---
#define QUADTR... | 21.796078 | 130 | 0.639259 | AitorSimona |
bafaad27da3bf67f2d6ac78afdc1168c7f0ee1c4 | 25,202 | cc | C++ | chromium/chrome/common/chrome_content_client.cc | wedataintelligence/vivaldi-source | 22a46f2c969f6a0b7ca239a05575d1ea2738768c | [
"BSD-3-Clause"
] | null | null | null | chromium/chrome/common/chrome_content_client.cc | wedataintelligence/vivaldi-source | 22a46f2c969f6a0b7ca239a05575d1ea2738768c | [
"BSD-3-Clause"
] | null | null | null | chromium/chrome/common/chrome_content_client.cc | wedataintelligence/vivaldi-source | 22a46f2c969f6a0b7ca239a05575d1ea2738768c | [
"BSD-3-Clause"
] | null | null | null | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/common/chrome_content_client.h"
#include <stdint.h>
#include "base/command_line.h"
#include "base/debug/crash_logging.h"
#include "... | 38.12708 | 89 | 0.745457 | wedataintelligence |
bafd0582987553bc920b0542043507875d9298a5 | 8,623 | cpp | C++ | testbed/tests/maxwell.cpp | Hexlord/box2d | 57722e8c0aee124545b6fe67f82f8d64e2117d2b | [
"MIT"
] | 1 | 2020-09-19T08:19:28.000Z | 2020-09-19T08:19:28.000Z | testbed/tests/maxwell.cpp | Hexlord/box2d | 57722e8c0aee124545b6fe67f82f8d64e2117d2b | [
"MIT"
] | null | null | null | testbed/tests/maxwell.cpp | Hexlord/box2d | 57722e8c0aee124545b6fe67f82f8d64e2117d2b | [
"MIT"
] | null | null | null | /*
* Copyright (c) 2014 Google, Inc.
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
* Permission is granted to anyone to use this software for any purpose,
* including commercial appl... | 26.946875 | 145 | 0.714137 | Hexlord |
bafd6e1299e4cb0aa407b83651decc6163ec81e2 | 7,341 | hpp | C++ | types/IntervalParser.hpp | Hacker0912/quickstep-datalog | 1de22e7ab787b5efa619861a167a097ff6a4f549 | [
"Apache-2.0"
] | 82 | 2016-04-18T03:59:06.000Z | 2019-02-04T11:46:08.000Z | types/IntervalParser.hpp | Hacker0912/quickstep-datalog | 1de22e7ab787b5efa619861a167a097ff6a4f549 | [
"Apache-2.0"
] | 265 | 2016-04-19T17:52:43.000Z | 2018-10-11T17:55:08.000Z | types/IntervalParser.hpp | Hacker0912/quickstep-datalog | 1de22e7ab787b5efa619861a167a097ff6a4f549 | [
"Apache-2.0"
] | 68 | 2016-04-18T05:00:34.000Z | 2018-10-30T12:41:02.000Z | /**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you... | 44.762195 | 85 | 0.690505 | Hacker0912 |
bafdccd75a123b674e0454fcaf3e123dcebb38bf | 9,504 | cc | C++ | caffe2/core/hip/blob_gpu_test.cc | yalue/rocm_pytorch | b37090f8055d196b9b3274525bacceb0675d1c5b | [
"Intel"
] | null | null | null | caffe2/core/hip/blob_gpu_test.cc | yalue/rocm_pytorch | b37090f8055d196b9b3274525bacceb0675d1c5b | [
"Intel"
] | null | null | null | caffe2/core/hip/blob_gpu_test.cc | yalue/rocm_pytorch | b37090f8055d196b9b3274525bacceb0675d1c5b | [
"Intel"
] | null | null | null | // !!! This is a file automatically generated by hipify!!!
#include <iostream> // NOLINT
#include <gtest/gtest.h>
#include "caffe2/core/blob.h"
#include "caffe2/core/blob_serialization.h"
#include "caffe2/core/hip/common_gpu.h"
#include "caffe2/core/hip/context_gpu.h"
#include "caffe2/proto/caffe2_pb.h"
namespace ca... | 41.502183 | 76 | 0.592487 | yalue |
24001aec762f9bde541ba37c76e5da251fa3df71 | 2,196 | cpp | C++ | Wonderland/Wonderland/Editor/Modules/VulkanWrapper/Renderable/VWRenderable.cpp | RodrigoHolztrattner/Wonderland | ffb71d47c1725e7cd537e2d1380962b5dfdc3d75 | [
"MIT"
] | 3 | 2018-04-09T13:01:07.000Z | 2021-03-18T12:28:48.000Z | Wonderland/Wonderland/Editor/Modules/VulkanWrapper/Renderable/VWRenderable.cpp | RodrigoHolztrattner/Wonderland | ffb71d47c1725e7cd537e2d1380962b5dfdc3d75 | [
"MIT"
] | null | null | null | Wonderland/Wonderland/Editor/Modules/VulkanWrapper/Renderable/VWRenderable.cpp | RodrigoHolztrattner/Wonderland | ffb71d47c1725e7cd537e2d1380962b5dfdc3d75 | [
"MIT"
] | 1 | 2021-03-18T12:28:50.000Z | 2021-03-18T12:28:50.000Z | ////////////////////////////////////////////////////////////////////////////////
// Filename: FluxMyWrapper.cpp
////////////////////////////////////////////////////////////////////////////////
#include "VWRenderable.h"
#include "..\Context\VWContext.h"
#define GLM_FORCE_RADIANS
#include <glm/glm.hpp>
#include <glm/gtc... | 24.131868 | 183 | 0.679872 | RodrigoHolztrattner |
2406bb66cb9a5aa5512f5350d6d0d7f482955f49 | 5,346 | cc | C++ | vxsig/candidates.cc | google/vxsig | 5f4b86027700d3ad251cbe3e96d8f90a1444d99f | [
"Apache-2.0"
] | 169 | 2019-05-17T07:11:48.000Z | 2022-03-22T02:35:46.000Z | vxsig/candidates.cc | google/vxsig | 5f4b86027700d3ad251cbe3e96d8f90a1444d99f | [
"Apache-2.0"
] | 6 | 2019-05-20T14:02:31.000Z | 2020-08-24T07:16:57.000Z | vxsig/candidates.cc | google/vxsig | 5f4b86027700d3ad251cbe3e96d8f90a1444d99f | [
"Apache-2.0"
] | 23 | 2019-05-17T08:52:48.000Z | 2021-08-01T14:36:24.000Z | // Copyright 2011-2021 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to... | 34.941176 | 80 | 0.671904 | google |
24073b494147a6803784d675fbe7c7aeba32fb02 | 7,157 | cc | C++ | services/tracing/public/cpp/trace_event_args_allowlist.cc | zealoussnow/chromium | fd8a8914ca0183f0add65ae55f04e287543c7d4a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 14,668 | 2015-01-01T01:57:10.000Z | 2022-03-31T23:33:32.000Z | services/tracing/public/cpp/trace_event_args_allowlist.cc | zealoussnow/chromium | fd8a8914ca0183f0add65ae55f04e287543c7d4a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 86 | 2015-10-21T13:02:42.000Z | 2022-03-14T07:50:50.000Z | services/tracing/public/cpp/trace_event_args_allowlist.cc | zealoussnow/chromium | fd8a8914ca0183f0add65ae55f04e287543c7d4a | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] | 5,941 | 2015-01-02T11:32:21.000Z | 2022-03-31T16:35:46.000Z | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "services/tracing/public/cpp/trace_event_args_allowlist.h"
#include "base/bind.h"
#include "base/strings/pattern.h"
#include "base/strings/strin... | 41.853801 | 80 | 0.638675 | zealoussnow |
2409a5957203e4bb6d2e3f1aaa021a5812b3b38f | 17,038 | cxx | C++ | Modules/Filtering/LabelMap/test/itkShapeLabelMapFilterGTest.cxx | Kronephon/itktest | a34e46226638c08bba315a257e33550a68203d97 | [
"Apache-2.0"
] | null | null | null | Modules/Filtering/LabelMap/test/itkShapeLabelMapFilterGTest.cxx | Kronephon/itktest | a34e46226638c08bba315a257e33550a68203d97 | [
"Apache-2.0"
] | null | null | null | Modules/Filtering/LabelMap/test/itkShapeLabelMapFilterGTest.cxx | Kronephon/itktest | a34e46226638c08bba315a257e33550a68203d97 | [
"Apache-2.0"
] | null | null | null | /*=========================================================================
*
* Copyright Insight Software Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* h... | 37.528634 | 131 | 0.71276 | Kronephon |
240a2ff1804c8a3c80524cf072e0d1d20d85499a | 437 | cpp | C++ | acmicpc/4811.cpp | juseongkr/BOJ | 8f10a2bf9a7d695455493fbe7423347a8b648416 | [
"Apache-2.0"
] | 7 | 2020-02-03T10:00:19.000Z | 2021-11-16T11:03:57.000Z | acmicpc/4811.cpp | juseongkr/Algorithm-training | 8f10a2bf9a7d695455493fbe7423347a8b648416 | [
"Apache-2.0"
] | 1 | 2021-01-03T06:58:24.000Z | 2021-01-03T06:58:24.000Z | acmicpc/4811.cpp | juseongkr/Algorithm-training | 8f10a2bf9a7d695455493fbe7423347a8b648416 | [
"Apache-2.0"
] | 1 | 2020-01-22T14:34:03.000Z | 2020-01-22T14:34:03.000Z | #include <iostream>
#include <cstring>
using namespace std;
#define MAX 31
long long dp[MAX][MAX];
long long solve(int a, int b)
{
if (a == 0)
return 1;
if (dp[a][b] != -1)
return dp[a][b];
dp[a][b] = solve(a-1, b+1);
if (b > 0)
dp[a][b] += solve(a, b-1);
return dp[a][b];
}
int main()
{
int n;
while... | 11.810811 | 30 | 0.517162 | juseongkr |
240b8e6fcc249e9d7c79b9ebc01e0dcef1f26730 | 2,135 | cpp | C++ | source/aufgabe2bis4.cpp | philbranding/programmiersprachen-aufgabenblatt-3 | d8b8426fa290ab5ae048749ca11982454e031a2b | [
"MIT"
] | null | null | null | source/aufgabe2bis4.cpp | philbranding/programmiersprachen-aufgabenblatt-3 | d8b8426fa290ab5ae048749ca11982454e031a2b | [
"MIT"
] | null | null | null | source/aufgabe2bis4.cpp | philbranding/programmiersprachen-aufgabenblatt-3 | d8b8426fa290ab5ae048749ca11982454e031a2b | [
"MIT"
] | null | null | null | # include <cstdlib> //std::rand()
# include <vector> //std::vector<>
# include <list> //std::list<>
# include <iostream> //std::cout
# include <iterator> //std::ostream_iterator<>
# include <algorithm> //std::reverse, std::generate
# include <set>
# include <map>
int main(){
std::list<unsigned int> mylist(100); //... | 28.851351 | 122 | 0.573302 | philbranding |
240bb6a9305b5b59bd948955fadb7803d1d7fd9f | 1,489 | hpp | C++ | src/metaSMT/concurrent/concurrent_queue.hpp | finnhaedicke/metaSMT | 949245da0bf0f3c042cb589aaea5d015e2ed9e9a | [
"MIT"
] | 33 | 2015-04-09T14:14:25.000Z | 2022-03-27T08:55:58.000Z | src/metaSMT/concurrent/concurrent_queue.hpp | finnhaedicke/metaSMT | 949245da0bf0f3c042cb589aaea5d015e2ed9e9a | [
"MIT"
] | 28 | 2015-03-13T14:21:33.000Z | 2019-04-02T07:59:34.000Z | src/metaSMT/concurrent/concurrent_queue.hpp | finnhaedicke/metaSMT | 949245da0bf0f3c042cb589aaea5d015e2ed9e9a | [
"MIT"
] | 9 | 2015-04-22T18:10:51.000Z | 2021-08-06T12:44:12.000Z | #pragma once
#include "../support/disable_warnings.hpp"
#include <boost/thread/mutex.hpp>
#include <boost/thread/condition_variable.hpp>
#include "../support/enable_warnings.hpp"
#include <queue>
namespace metaSMT {
namespace concurrent {
/* taken from http://www.justsoftwaresolutions.co.uk/threading/implementing-... | 22.560606 | 129 | 0.633983 | finnhaedicke |
240ccf1b05c2f7673c191f763adb421ca3ef3bf5 | 451 | cc | C++ | leetcode/p2-2.cc | holmescn/practice | edd992a309d1413baf7e2b9bed31ece6cb242fde | [
"MIT"
] | null | null | null | leetcode/p2-2.cc | holmescn/practice | edd992a309d1413baf7e2b9bed31ece6cb242fde | [
"MIT"
] | null | null | null | leetcode/p2-2.cc | holmescn/practice | edd992a309d1413baf7e2b9bed31ece6cb242fde | [
"MIT"
] | null | null | null | class Solution {
public:
vector<int> twoSum(vector<int>& nums, int target) {
std::unordered_map<int, int> reverseIndex;
for (int i = 0; i < nums.size(); i ++) {
auto found = reverseIndex.find(target - nums[i]);
if (found != reverseIndex.end()) {
return vector... | 25.055556 | 61 | 0.501109 | holmescn |
240e955b6ff3d83bc3721cc06af04dc2f9ac263a | 3,471 | cc | C++ | vendor/github.com/tensorflow/tensorflow/tensorflow/stream_executor/kernel.cc | owennewo/kfserving | 89f73c87525b8e06ea799f69f2979c4ad272fcb3 | [
"Apache-2.0"
] | 52 | 2018-11-12T06:39:35.000Z | 2022-03-08T05:31:27.000Z | tensorflow/stream_executor/kernel.cc | shekharpalit/tensorflow | 6aa83398ab03bfae822f36772757097bcb98b6ed | [
"Apache-2.0"
] | 59 | 2019-06-17T09:37:49.000Z | 2022-01-19T01:21:34.000Z | tensorflow/stream_executor/kernel.cc | shekharpalit/tensorflow | 6aa83398ab03bfae822f36772757097bcb98b6ed | [
"Apache-2.0"
] | 36 | 2017-07-27T21:12:40.000Z | 2022-02-03T16:45:56.000Z | /* Copyright 2015 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or a... | 32.439252 | 80 | 0.75569 | owennewo |
24101520850bdec13a66f47bb46d34ccff1b7ce8 | 4,459 | cxx | C++ | Infovis/Core/vtkThresholdTable.cxx | jasper-yeh/VtkDotNet | 84b56f781cb511694e4380cebfb245bbefe2560b | [
"BSD-3-Clause"
] | 3 | 2020-06-20T23:31:06.000Z | 2021-01-11T02:17:16.000Z | Infovis/Core/vtkThresholdTable.cxx | jasper-yeh/VtkDotNet | 84b56f781cb511694e4380cebfb245bbefe2560b | [
"BSD-3-Clause"
] | null | null | null | Infovis/Core/vtkThresholdTable.cxx | jasper-yeh/VtkDotNet | 84b56f781cb511694e4380cebfb245bbefe2560b | [
"BSD-3-Clause"
] | 5 | 2015-10-09T04:12:29.000Z | 2021-12-15T16:57:11.000Z | /*=========================================================================
Program: Visualization Toolkit
Module: vtkThresholdTable.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This softwar... | 29.529801 | 123 | 0.638932 | jasper-yeh |
2413be703b6f2baa7497d5140f973703a1e87688 | 7,346 | cpp | C++ | src/CameraTransitions/SdkModel/TransitionToInteriorStage.cpp | usamakhan049/assignment | 40eb153e8fd74f73ba52ce29417d8220ab744b5d | [
"BSD-2-Clause"
] | 69 | 2017-06-07T10:47:03.000Z | 2022-03-24T08:33:33.000Z | src/CameraTransitions/SdkModel/TransitionToInteriorStage.cpp | usamakhan049/assignment | 40eb153e8fd74f73ba52ce29417d8220ab744b5d | [
"BSD-2-Clause"
] | 23 | 2017-06-07T10:47:00.000Z | 2020-07-09T10:31:17.000Z | src/CameraTransitions/SdkModel/TransitionToInteriorStage.cpp | usamakhan049/assignment | 40eb153e8fd74f73ba52ce29417d8220ab744b5d | [
"BSD-2-Clause"
] | 31 | 2017-08-12T13:19:32.000Z | 2022-01-04T20:33:40.000Z | // Copyright eeGeo Ltd (2012-2017), All Rights Reserved
#include <cmath>
#include "TransitionToInteriorStage.h"
#include "InteriorSelectionModel.h"
#include "InteriorId.h"
#include "InteriorInteractionModel.h"
#include "InteriorSelectionModel.h"
#include "InteriorsCameraController.h"
#include "InteriorTransitionModel... | 49.302013 | 155 | 0.546828 | usamakhan049 |
2413c53aa208f6a5f0febc24109a1915cf7cfd2c | 1,549 | hpp | C++ | stan/math/prim/fun/simplex_free.hpp | bayesmix-dev/math | 3616f7195adc95ef8e719a2af845d61102bc9272 | [
"BSD-3-Clause"
] | 1 | 2020-06-14T14:33:37.000Z | 2020-06-14T14:33:37.000Z | stan/math/prim/fun/simplex_free.hpp | bayesmix-dev/math | 3616f7195adc95ef8e719a2af845d61102bc9272 | [
"BSD-3-Clause"
] | null | null | null | stan/math/prim/fun/simplex_free.hpp | bayesmix-dev/math | 3616f7195adc95ef8e719a2af845d61102bc9272 | [
"BSD-3-Clause"
] | 1 | 2020-05-10T12:55:07.000Z | 2020-05-10T12:55:07.000Z | #ifndef STAN_MATH_PRIM_FUN_SIMPLEX_FREE_HPP
#define STAN_MATH_PRIM_FUN_SIMPLEX_FREE_HPP
#include <stan/math/prim/meta.hpp>
#include <stan/math/prim/err.hpp>
#include <stan/math/prim/fun/Eigen.hpp>
#include <stan/math/prim/fun/log.hpp>
#include <stan/math/prim/fun/logit.hpp>
#include <stan/math/prim/fun/to_ref.hpp>
#in... | 29.788462 | 71 | 0.700452 | bayesmix-dev |
241685feb2d2c1b7efd3aa617c4a20f43873ebb7 | 2,128 | cpp | C++ | src/lapack_like/props/Norm/Nuclear.cpp | pjt1988/Elemental | 71d3e2b98829594e9f52980a8b1ef7c1e99c724b | [
"Apache-2.0"
] | 473 | 2015-01-11T03:22:11.000Z | 2022-03-31T05:28:39.000Z | src/lapack_like/props/Norm/Nuclear.cpp | pjt1988/Elemental | 71d3e2b98829594e9f52980a8b1ef7c1e99c724b | [
"Apache-2.0"
] | 205 | 2015-01-10T20:33:45.000Z | 2021-07-25T14:53:25.000Z | src/lapack_like/props/Norm/Nuclear.cpp | pjt1988/Elemental | 71d3e2b98829594e9f52980a8b1ef7c1e99c724b | [
"Apache-2.0"
] | 109 | 2015-02-16T14:06:42.000Z | 2022-03-23T21:34:26.000Z | /*
Copyright (c) 2009-2016, Jack Poulson
All rights reserved.
This file is part of Elemental and is under the BSD 2-Clause License,
which can be found in the LICENSE file in the root directory, or at
http://opensource.org/licenses/BSD-2-Clause
*/
#include <El.hpp>
namespace El {
template<typename Fiel... | 27.636364 | 77 | 0.739192 | pjt1988 |
2416890ad0b7f5eb96d1b99de8d9ea950ddae211 | 242 | cpp | C++ | ContainerShape.cpp | wnsgml972/MFC-InteriorProgram | d37a7d084414ad727555936d5eba3a5d757e9d78 | [
"MIT"
] | 7 | 2019-05-03T01:15:42.000Z | 2021-08-31T06:38:11.000Z | ContainerShape.cpp | wnsgml972/MFC-InteriorProgram | d37a7d084414ad727555936d5eba3a5d757e9d78 | [
"MIT"
] | 14 | 2018-09-11T10:11:34.000Z | 2019-05-21T07:07:31.000Z | ContainerShape.cpp | wnsgml972/MFC-InteriorProgram | d37a7d084414ad727555936d5eba3a5d757e9d78 | [
"MIT"
] | null | null | null | #include "stdafx.h"
#include "ContainerShape.h"
CContainerShape::CContainerShape(int nId, int nX, int nY, int nWidth, int nHeight)
: CShape(nId, nX, nY, nWidth, nHeight)
{
m_nType = TYPE_DEFAULT;
}
CContainerShape::~CContainerShape()
{
} | 18.615385 | 82 | 0.727273 | wnsgml972 |
24180ea2b9a61bbe1b87dfdd7ca36915203e65ee | 2,693 | cpp | C++ | psx/_dump_/23/_dump_c_src_/diabpsx/psxsrc/gpanel.cpp | maoa3/scalpel | 2e7381b516cded28996d290438acc618d00b2aa7 | [
"Unlicense"
] | 15 | 2018-06-28T01:11:25.000Z | 2021-09-27T15:57:18.000Z | psx/_dump_/23/_dump_c_src_/diabpsx/psxsrc/gpanel.cpp | maoa3/scalpel | 2e7381b516cded28996d290438acc618d00b2aa7 | [
"Unlicense"
] | 7 | 2018-06-29T04:08:23.000Z | 2019-10-17T13:57:22.000Z | psx/_dump_/23/_dump_c_src_/diabpsx/psxsrc/gpanel.cpp | maoa3/scalpel | 2e7381b516cded28996d290438acc618d00b2aa7 | [
"Unlicense"
] | 7 | 2018-06-28T01:11:34.000Z | 2020-05-23T09:21:48.000Z | // C:\diabpsx\PSXSRC\GPANEL.CPP
#include "types.h"
// address: 0x8008D268
// line start: 204
// line end: 218
unsigned int GetPal__6GPaneli(struct GPanel *this, int Frm) {
}
// address: 0x8008D2AC
// size: 0x10
// line start: 226
// line end: 230
struct GPanel *__6GPaneli(struct GPanel *this, int Ofs) {
}
// ... | 21.373016 | 120 | 0.709246 | maoa3 |
24181414823811739d99a328f1d8485761f4d6a0 | 476 | cpp | C++ | src/main.cpp | egomeh/floaty-boaty-go-go | a011db6f1f8712bf3caa85becc1fd83ac5bf1996 | [
"MIT"
] | 2 | 2018-01-12T10:26:07.000Z | 2018-02-02T19:03:00.000Z | src/main.cpp | egomeh/floaty-boaty-go-go | a011db6f1f8712bf3caa85becc1fd83ac5bf1996 | [
"MIT"
] | null | null | null | src/main.cpp | egomeh/floaty-boaty-go-go | a011db6f1f8712bf3caa85becc1fd83ac5bf1996 | [
"MIT"
] | null | null | null | #include "definitions.hpp"
#include <string>
#include <sstream>
#include <iostream>
#include <thread>
#include "util.hpp"
#include "application.hpp"
#ifdef GUIONLY
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PWSTR lpCmdLine, int nCmdShow)
#else
int main(HINSTANCE hInstance, HINSTANCE hPrevInst... | 19.833333 | 96 | 0.754202 | egomeh |
24183812b751ea25101cefa9fa1937ced6f15175 | 1,530 | cpp | C++ | src/bwt.cpp | pdinklag/stash | b9e4b1754a521c118b3054af0087b1ae6c9463a1 | [
"MIT"
] | null | null | null | src/bwt.cpp | pdinklag/stash | b9e4b1754a521c118b3054af0087b1ae6c9463a1 | [
"MIT"
] | null | null | null | src/bwt.cpp | pdinklag/stash | b9e4b1754a521c118b3054af0087b1ae6c9463a1 | [
"MIT"
] | 1 | 2020-05-13T11:36:45.000Z | 2020-05-13T11:36:45.000Z | #include <iostream>
#include <fstream>
#include <vector>
#include <stash/util/file_size.hpp>
#include <divsufsort64.h>
#include <tlx/cmdline_parser.hpp>
int main(int argc, char** argv) {
// params
std::string input_filename; // required
sauchar_t sentinel;
{
std::string sentinel_str("\0", 1)... | 24.285714 | 93 | 0.549673 | pdinklag |
2419b94e666e844b7a0077134703d7703da4e382 | 634 | cpp | C++ | src/Engine/GUI/GUI_Main.cpp | slajerek/MTEngineSDL | 19b5295d875c197ec03bc20ddacd48c228920365 | [
"MIT"
] | 4 | 2021-12-16T11:22:30.000Z | 2022-01-05T11:20:32.000Z | src/Engine/GUI/GUI_Main.cpp | slajerek/MTEngineSDL | 19b5295d875c197ec03bc20ddacd48c228920365 | [
"MIT"
] | 1 | 2022-01-07T10:41:38.000Z | 2022-01-09T12:04:03.000Z | src/Engine/GUI/GUI_Main.cpp | slajerek/MTEngineSDL | 19b5295d875c197ec03bc20ddacd48c228920365 | [
"MIT"
] | null | null | null | #include "GUI_Main.h"
#include "CGuiMain.h"
#include "MT_API.h"
#include "CConfigStorage.h"
CGuiMain *guiMain = NULL;
CConfigStorage *globalConfig = NULL;
void GUI_Init()
{
MT_GuiPreInit();
guiMain = new CGuiMain();
}
void GUI_Render()
{
// LOGD("GUI_Render");
guiMain->RenderImGui();
MT_Render();
}
void GUI_Po... | 14.088889 | 45 | 0.727129 | slajerek |
241a99feb862404273344a53f699a62033ea0be4 | 8,032 | cpp | C++ | Samples/FileListTransfer/main.cpp | RichardRanft/RakNet | 1a169895a900c9fc4841c556e16514182b75faf8 | [
"BSD-2-Clause"
] | 1,255 | 2015-01-01T12:16:18.000Z | 2017-05-24T20:56:12.000Z | Samples/FileListTransfer/main.cpp | RichardRanft/RakNet | 1a169895a900c9fc4841c556e16514182b75faf8 | [
"BSD-2-Clause"
] | 76 | 2017-06-07T21:05:41.000Z | 2021-12-14T21:15:49.000Z | Samples/FileListTransfer/main.cpp | RichardRanft/RakNet | 1a169895a900c9fc4841c556e16514182b75faf8 | [
"BSD-2-Clause"
] | 535 | 2015-01-05T01:09:02.000Z | 2017-05-17T00:58:03.000Z | /*
* Copyright (c) 2014, Oculus VR, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/
... | 32.257028 | 199 | 0.718127 | RichardRanft |
241aa650f8d498bd8f5bbc615306ebb01d7cb773 | 7,235 | cpp | C++ | oceanus/src/v20190422/model/RunJobDescription.cpp | suluner/tencentcloud-sdk-cpp | a56c73cc3f488c4d1e10755704107bb15c5e000d | [
"Apache-2.0"
] | null | null | null | oceanus/src/v20190422/model/RunJobDescription.cpp | suluner/tencentcloud-sdk-cpp | a56c73cc3f488c4d1e10755704107bb15c5e000d | [
"Apache-2.0"
] | null | null | null | oceanus/src/v20190422/model/RunJobDescription.cpp | suluner/tencentcloud-sdk-cpp | a56c73cc3f488c4d1e10755704107bb15c5e000d | [
"Apache-2.0"
] | null | null | null | /*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
... | 28.710317 | 152 | 0.695923 | suluner |
241c5e99b199f05fbc7de8a481533aab1a67ed10 | 8,747 | cpp | C++ | Exmaple/demo/CreateProjectFileForm.cpp | kevinlq/LQFramK | 53edc9dd5f816147462176f4b0d5f616c43fb076 | [
"Apache-2.0"
] | 195 | 2017-04-01T14:22:47.000Z | 2022-03-17T03:26:07.000Z | Exmaple/demo/CreateProjectFileForm.cpp | kevinlq/LQFramK | 53edc9dd5f816147462176f4b0d5f616c43fb076 | [
"Apache-2.0"
] | 2 | 2018-01-29T07:40:03.000Z | 2018-10-30T03:55:52.000Z | Exmaple/demo/CreateProjectFileForm.cpp | kevinlq/LQFramK | 53edc9dd5f816147462176f4b0d5f616c43fb076 | [
"Apache-2.0"
] | 133 | 2017-06-02T13:43:09.000Z | 2022-03-29T07:23:09.000Z | #include "CreateProjectFileForm.h"
#include "ui_CreateProjectFileForm.h"
#include <QFile>
#include <QFileInfo>
#include <QDir>
#include <QDateTime>
#define CUR_DATETIME QDateTime::currentDateTime ().toString ("yyyy-MM-dd hh:mm:ss")
#include <QDebug>
CreateProjectFileForm::CreateProjectFileForm(QWidget *parent) ... | 34.848606 | 113 | 0.649594 | kevinlq |
241d02e7aa8c2d91440ae4c8dbbd5b28f7dd5c3f | 703 | cpp | C++ | mygfx/examples/00-helloworld/helloworld.cpp | miztook/milan | 45b4b3a7ac665642b76b7461ab629072e767e563 | [
"MIT"
] | 1 | 2018-11-08T23:19:36.000Z | 2018-11-08T23:19:36.000Z | mygfx/examples/00-helloworld/helloworld.cpp | miztook/milan | 45b4b3a7ac665642b76b7461ab629072e767e563 | [
"MIT"
] | null | null | null | mygfx/examples/00-helloworld/helloworld.cpp | miztook/milan | 45b4b3a7ac665642b76b7461ab629072e767e563 | [
"MIT"
] | null | null | null | #include "mygfx/mygfx.h"
#pragma comment(lib, "mygfx.lib")
#pragma comment(lib, "example-common.lib")
#include <bx/uint32_t.h>
#include "common.h"
#include "bgfx_utils.h"
class ExampleHelloWorld : public entry::AppI
{
public:
ExampleHelloWorld(const char* _name, const char* _description)
: entry::AppI(_name, _de... | 17.575 | 95 | 0.70697 | miztook |
241df2dcc931d0604dc703df9902e0073fb75faf | 4,874 | cc | C++ | external/fieldtrip-20160128/realtime/src/acquisition/emotiv/emotiv2ft.cc | pchrapka/brain-modelling | f232b5a858e45f10b0b0735269010454129ab017 | [
"MIT"
] | 1 | 2017-10-13T19:37:52.000Z | 2017-10-13T19:37:52.000Z | external/fieldtrip-20160128/realtime/src/acquisition/emotiv/emotiv2ft.cc | pchrapka/brain-modelling | f232b5a858e45f10b0b0735269010454129ab017 | [
"MIT"
] | null | null | null | external/fieldtrip-20160128/realtime/src/acquisition/emotiv/emotiv2ft.cc | pchrapka/brain-modelling | f232b5a858e45f10b0b0735269010454129ab017 | [
"MIT"
] | 1 | 2019-11-25T12:22:05.000Z | 2019-11-25T12:22:05.000Z | #include <iostream>
#include <fstream>
#include <sstream>
#include <map>
#ifdef PLATFORM_WIN32
#include <windows.h>
void dosleep(unsigned milliseconds) {
Sleep(milliseconds);
}
#else
#include <unistd.h>
void dosleep(unsigned milliseconds) {
usleep(milliseconds * 1000); // takes micr... | 22.990566 | 126 | 0.672548 | pchrapka |
241df3d7cd84c7d4532df3e8c3f2450278af51a5 | 4,290 | cpp | C++ | src-plugins/itkDataTensorImageWriter/itkDataTensorImageWriterBase.cpp | ocommowi/medInria-public | 9074e40c886881666e7a52c53309d8d28e35c0e6 | [
"BSD-4-Clause"
] | null | null | null | src-plugins/itkDataTensorImageWriter/itkDataTensorImageWriterBase.cpp | ocommowi/medInria-public | 9074e40c886881666e7a52c53309d8d28e35c0e6 | [
"BSD-4-Clause"
] | null | null | null | src-plugins/itkDataTensorImageWriter/itkDataTensorImageWriterBase.cpp | ocommowi/medInria-public | 9074e40c886881666e7a52c53309d8d28e35c0e6 | [
"BSD-4-Clause"
] | null | null | null | /*=========================================================================
medInria
Copyright (c) INRIA 2013. All rights reserved.
See LICENSE.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE.
====... | 28.791946 | 119 | 0.657809 | ocommowi |
241f97f0fc2fd7f2a5cd2837fa69731786f96c70 | 525 | cpp | C++ | LeetCode/Solutions/LC0011.cpp | Mohammed-Shoaib/HackerRank-Problems | ccfb9fc2f0d8dff454439d75ce519cf83bad7c3b | [
"MIT"
] | 54 | 2019-05-13T12:13:09.000Z | 2022-02-27T02:59:00.000Z | LeetCode/Solutions/LC0011.cpp | Mohammed-Shoaib/HackerRank-Problems | ccfb9fc2f0d8dff454439d75ce519cf83bad7c3b | [
"MIT"
] | 2 | 2020-10-02T07:16:43.000Z | 2020-10-19T04:36:19.000Z | LeetCode/Solutions/LC0011.cpp | Mohammed-Shoaib/HackerRank-Problems | ccfb9fc2f0d8dff454439d75ce519cf83bad7c3b | [
"MIT"
] | 20 | 2020-05-26T09:48:13.000Z | 2022-03-18T15:18:27.000Z | /*
Problem Statement: https://leetcode.com/problems/container-with-most-water/
Time: O(n)
Space: O(1)
Author: Mohammed Shoaib, github.com/Mohammed-Shoaib
*/
class Solution {
public:
int maxArea(vector<int>& height) {
int max_area, beg, end;
max_area = beg = 0;
end = height.size() - 1;
// two pointer
whil... | 19.444444 | 75 | 0.622857 | Mohammed-Shoaib |
241fa680efd263f8a719e2394c0420c0d4d15a87 | 156 | cpp | C++ | src/goto-instrument/accelerate/linearize.cpp | dan-blank/yogar-cbmc | 05b4f056b585b65828acf39546c866379dca6549 | [
"MIT"
] | 1 | 2021-08-17T08:41:12.000Z | 2021-08-17T08:41:12.000Z | src/goto-instrument/accelerate/linearize.cpp | dan-blank/yogar-cbmc | 05b4f056b585b65828acf39546c866379dca6549 | [
"MIT"
] | 6 | 2017-12-03T22:02:14.000Z | 2018-04-10T09:42:20.000Z | src/goto-instrument/accelerate/linearize.cpp | dan-blank/yogar-cbmc | 05b4f056b585b65828acf39546c866379dca6549 | [
"MIT"
] | 4 | 2019-01-19T03:32:21.000Z | 2021-12-20T14:25:19.000Z | #include "linearize.h"
#include <goto-symex/symex_target_equation.h>
bool linearize(symex_target_equationt &equation, linear_recurrencet &recurrence) {
}
| 22.285714 | 82 | 0.807692 | dan-blank |
241ffd70cd5adddd022bc8b058902d6620e46bb4 | 18,572 | cxx | C++ | Rendering/OpenGL2/vtkOpenGLGlyph3DHelper.cxx | danlipsa/VTK-vtk-optimizations | 2084f6ee312745cb30df015cb46c55c89e341f3a | [
"BSD-3-Clause"
] | null | null | null | Rendering/OpenGL2/vtkOpenGLGlyph3DHelper.cxx | danlipsa/VTK-vtk-optimizations | 2084f6ee312745cb30df015cb46c55c89e341f3a | [
"BSD-3-Clause"
] | null | null | null | Rendering/OpenGL2/vtkOpenGLGlyph3DHelper.cxx | danlipsa/VTK-vtk-optimizations | 2084f6ee312745cb30df015cb46c55c89e341f3a | [
"BSD-3-Clause"
] | null | null | null | /*=========================================================================
Program: Visualization Toolkit
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRAN... | 36.062136 | 139 | 0.578505 | danlipsa |
2420fba5644995b832bb7bc0f6dbb1fb7d26a0df | 3,036 | cpp | C++ | Sources/Applications/Raytracer/Mesh.cpp | jdelezenne/Sonata | fb1b1b64a78874a0ab2809995be4b6f14f9e4d56 | [
"MIT"
] | null | null | null | Sources/Applications/Raytracer/Mesh.cpp | jdelezenne/Sonata | fb1b1b64a78874a0ab2809995be4b6f14f9e4d56 | [
"MIT"
] | null | null | null | Sources/Applications/Raytracer/Mesh.cpp | jdelezenne/Sonata | fb1b1b64a78874a0ab2809995be4b6f14f9e4d56 | [
"MIT"
] | null | null | null | /*=============================================================================
Mesh.cpp
Project: Sonata Engine
Copyright �by7
Julien Delezenne
=============================================================================*/
#include "Mesh.h"
#include "TriangleShape.h"
namespace Raytracer
{
SE_IMPLEMENT_CLASS(RTMesh)... | 20.513514 | 81 | 0.607049 | jdelezenne |
24258878e838da031d16e946cad6d32f1b883411 | 10,463 | cc | C++ | extras/geometry_utils.cc | dch0ph/pNMRsim | 2420e618c7bff9b38b43e7c2ac684c5c28b61787 | [
"MIT"
] | null | null | null | extras/geometry_utils.cc | dch0ph/pNMRsim | 2420e618c7bff9b38b43e7c2ac684c5c28b61787 | [
"MIT"
] | null | null | null | extras/geometry_utils.cc | dch0ph/pNMRsim | 2420e618c7bff9b38b43e7c2ac684c5c28b61787 | [
"MIT"
] | null | null | null |
#include "BaseList.h"
#include "geometry.h"
#include "basespin_system.h"
#include "ListList.h"
#include "NMR.h"
using namespace libcmatrix;
#include "geometry_utils.h"
struct default_spin_t {
const char* elementname;
size_t massnumber;
};
#define NMRSIM_DEFAULT_SPINS 57
const default_spin_t default_spin_table[... | 28.98338 | 175 | 0.605467 | dch0ph |
2425d5f33a9009189d691d775beb70a443aceb40 | 12,235 | cpp | C++ | src/optimization/solvers/LP/direct/IPM/util/Initialize.cpp | sg0/Elemental | 614f02509690449b553451e36bc78e7e132ea517 | [
"BSD-3-Clause"
] | 1 | 2015-12-08T22:54:37.000Z | 2015-12-08T22:54:37.000Z | src/optimization/solvers/LP/direct/IPM/util/Initialize.cpp | sg0/Elemental | 614f02509690449b553451e36bc78e7e132ea517 | [
"BSD-3-Clause"
] | null | null | null | src/optimization/solvers/LP/direct/IPM/util/Initialize.cpp | sg0/Elemental | 614f02509690449b553451e36bc78e7e132ea517 | [
"BSD-3-Clause"
] | null | null | null | /*
Copyright (c) 2009-2015, Jack Poulson
All rights reserved.
This file is part of Elemental and is under the BSD 2-Clause License,
which can be found in the LICENSE file in the root directory, or at
http://opensource.org/licenses/BSD-2-Clause
*/
#include "El.hpp"
#include "../util.hpp"
namespace El... | 33.337875 | 110 | 0.543032 | sg0 |