blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
86894c7eee40d9ca3604f89592fb7183fb001531 | b08639a23dd4d2ecde299a6da48c6c1fb256bd31 | /Hazel/src/Hazel/Renderer/SubTexture2D.hpp | 6c33ac2ba0f61471b807b17402f8f191bd4c3bcc | [
"Apache-2.0"
] | permissive | Ligh7bringer/Hazel | f03743c69291de66a7d00c3d3a1ee6f5511c975a | 1608ccb2abd911b5768f28de97082ec267beedd0 | refs/heads/master | 2023-06-07T17:13:17.089432 | 2023-05-29T01:27:03 | 2023-05-29T01:27:03 | 197,222,071 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 625 | hpp | #pragma once
#include "Texture.hpp"
#include <glm/glm.hpp>
namespace Hazel
{
class SubTexture2D
{
public:
SubTexture2D(const Ref<Texture2D>& texture, const glm::vec2& min, const glm::vec2& max);
const Ref<Texture2D> GetTexture() const { return m_Texture; }
const glm::vec2* GetTextureCoords() const { return m_Te... | [
"s.georgiev255@gmail.com"
] | s.georgiev255@gmail.com |
6190bc3c9f8844fed3301161a688d7304e02da9c | ced6b91821f1f3b9c8d8e209e4306b309256c2d7 | /algorithm/basic-algorithm/graph-theory/DFS.cpp | 381bbcb85515243dbe59923da9ec97009de9dda4 | [] | no_license | Aleda/libsummer | 9c3edd2d4f57203ca6b25e3604b3056bdc30c96e | 4cc7c88948a4a6a2c75f7ca1ddc214263f9fd09c | refs/heads/master | 2016-09-16T16:38:18.398349 | 2016-03-13T15:50:30 | 2016-03-13T15:50:30 | 32,668,783 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,578 | cpp | #include <stdio.h>
#include <string.h>
#include <iostream>
#include <string>
using namespace std;
const int maxe = 10011;
const int maxn = 111;
const int INF = 0x3fffffff;
int K;
int N;
int R;
struct Edge
{
int v;
int length;
int val;
int next;
}e[maxe];
int head[maxn];
int vis[maxn];
int min... | [
"lishuo02@baidu.com"
] | lishuo02@baidu.com |
e5cd784bded254f2511751088b5cff2598e2c540 | df872c79b4547a12874fdaee0a363d1a3415c361 | /JumpPoint.cpp | 52d75bc458f609ed165959a58bb6e9956dfd3e23 | [
"MIT"
] | permissive | ugokce/Efficent-Path-Finding-Algorithms | b06985af349c123bd76406700a8ae406cea0f186 | 7f4766cad5b8229ac6adb323209e34b5f47e7b5d | refs/heads/master | 2022-12-15T05:46:03.940822 | 2020-07-06T22:46:45 | 2020-07-06T22:46:45 | 296,418,955 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,774 | cpp | #include <stdio.h>
#include <vector>
#include <algorithm>
#include <iostream>
#include <cmath>
#include <list>
#include <map>
bool isForced = false;
struct Node
{
public:
void setPositon(const int xPosition, const int yPosition)
{
x = xPosition;
y = yPosition;
}
Node()
{
x... | [
"32913922+ugokce@users.noreply.github.com"
] | 32913922+ugokce@users.noreply.github.com |
80c13e90481cba213e94c464807941f2995a65be | b2d70bc01464859761817522e6e4ef157b6bfda6 | /Competitions/Hackercup/2021/Qualification/Consistency - Chapter 1/solution.cpp | 47088a791f4d4f57f47dd44bb673b2438cdbfca5 | [] | no_license | ben-jnr/competitive-coding | a1b65b72db73a7b9322281ca9e788937ac71eb31 | 4e3bcd90b593749aa29228c54a211bf0da75501a | refs/heads/main | 2023-08-26T07:43:10.018640 | 2021-10-27T13:50:08 | 2021-10-27T13:50:08 | 273,961,346 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 835 | cpp | #include<iostream>
#include<unordered_map>
#include<climits>
using namespace std;
int main() {
int t,tlimit,i,minimum,vcount,ccount,ans;
char c;
string s;
cin>>tlimit;
t=1;
while(t<=tlimit) {
cin>>s;
unordered_map<char,int> m;
vcount = ccount = 0;
minimum = INT_MAX;
for(c='A'; c<='Z'; c++)
m.inser... | [
"bichubenkuruvilla@gmail.com"
] | bichubenkuruvilla@gmail.com |
aba22086436a372f9849b632105d07de691ebcc7 | 96a72e0b2c2dae850d67019bc26b73864e680baa | /Study/System/Lecture/source/Chap.02/WQueNotify/WQueNotify.cpp | c5b8c3a456ac7e3e9bd5316e52577d46856e3f7f | [] | no_license | SeaCanFly/CODE | 7c06a81ef04d14f064e2ac9737428da88f0957c7 | edf9423eb074861daf5063310a894d7870fa7b84 | refs/heads/master | 2021-04-12T12:15:58.237501 | 2019-07-15T05:02:09 | 2019-07-15T05:02:09 | 126,703,006 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,530 | cpp | #include "stdafx.h"
#include "Windows.h"
#include "list"
#include "iostream"
using namespace std;
#define CMD_NONE 0
#define CMD_STR 1
#define CMD_POINT 2
#define CMD_TIME 3
#define CMD_EXIT 100
class WAIT_QUE
{
struct NOTI_ITEM
{
LONG _cmd, _size;
PBYTE _data;
NOTI_ITEM()
{
_cmd = _size = 0, ... | [
"seacanfly@gmail.com"
] | seacanfly@gmail.com |
377a8314f14fa42927fd1d491f11dee0ef7ff008 | 980d92ee425904d258c05e13d7cb6934f4f53892 | /Qt/gotocell/gotocelldialog.cpp | 37fe8144588296f188cd3da1f6b5787572d4959d | [] | no_license | Danvilgom/Interfaces | 68210641d7bfdccdbd621ec7e1f7ffbc99407ff8 | ef37a93aee7e627d8330cbe7048f12d098403412 | refs/heads/master | 2021-09-04T14:50:12.729289 | 2018-01-19T17:17:06 | 2018-01-19T17:17:06 | 109,845,813 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 703 | cpp | #include <QtGui>
#include "gotocelldialog.h"
GoToCellDialog::GoToCellDialog(QWidget *parent)
: QDialog(parent)
{
setupUi(this);
buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
QRegExp regExp("[A-Za-z][1-9][0-9]{0,2}");
lineEdit->setValidator(new QRegExpValidator(regExp, this));
c... | [
"danielvalla96@gmail.com"
] | danielvalla96@gmail.com |
2d48413fa46b94448c9fa0c5c20a2f68edc0d250 | ad945123a757a40a2ee4a4f2af4a51846ad53c75 | /Projekt/Sensor/sensorhighlevel.cpp | 0585e39add7a4f252bab35102873d18f7b821bf4 | [
"MIT"
] | permissive | Koerner/TUM_AdvancedCourseCPP | 01ef34c3332d173eea9b044442df71c079760f6e | a9c25e15213a7df9b8a4766cfe1c16b3d83c77f8 | refs/heads/master | 2020-12-28T23:24:08.395684 | 2015-08-13T17:34:30 | 2015-08-13T17:34:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 37,171 | cpp | #include "sensorhighlevel.h"
#include <QtMath>
#include <QDebug>
#include <QtAlgorithms>
#include <QMutexLocker>
#include <QMutex>
#include <QElapsedTimer>
#include <QThread>
#include "Data/define.h"
#include "Data/mapdata.h"
#include "Sensor/orientierung.h"
#include "Sensor/medianfilter.h"
#include "Se... | [
"carlo@vandriesten.de"
] | carlo@vandriesten.de |
12f02761f73fd878c8edc69dbceb983896e5802c | 0a1e6605c5c39a3d39bacd2164dd5aa5a293d5b0 | /Final/src/particle_system.cpp | 36fd2f62659d9d86605e36e828d665e47176323e | [] | no_license | trushton/advancedGraphics | b5c00ad7dd97dae05d764295ffd3ad92c17dfeac | 9bd900a5ef4b0b3f160ac7496522d37c2dbfc80b | refs/heads/master | 2020-12-11T06:03:57.726773 | 2015-11-20T08:21:45 | 2015-11-20T08:21:45 | 38,222,389 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,871 | cpp | //
// Created by trushton on 7/28/15.
//
#include "particle_system.h"
#include "RandomTexture.h"
#include "Engine.h"
#include "graphics.h"
#define MAX_PARTICLES 1000
#define PARTICLE_LIFETIME 10.0f
#define PARTICLE_TYPE_LAUNCHER 0.0f
#define PARTICLE_TYPE_SHELL 1.0f
#define PARTICLE_TYPE_SECONDARY_SHELL 2.0f
#defin... | [
"trushton134@gmail.com"
] | trushton134@gmail.com |
6141b141f6ddef04b545c7fb4abb671a1e3a9f01 | 083ca3df7dba08779976d02d848315f85c45bf75 | /BinaryTreeInorderTraversal2.cpp | f5b1cfa0ef5600ad4e89f050d75b0f36c2863fc7 | [] | no_license | jiangshen95/UbuntuLeetCode | 6427ce4dc8d9f0f6e74475faced1bcaaa9fc9f94 | fa02b469344cf7c82510249fba9aa59ae0cb4cc0 | refs/heads/master | 2021-05-07T02:04:47.215580 | 2020-06-11T02:33:35 | 2020-06-11T02:33:35 | 110,397,909 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,039 | cpp | #include<iostream>
#include<vector>
using namespace std;
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
class Solution {
public:
vector<int> inorderTraversal(TreeNode* root) {
vector<int> result;
... | [
"jiangshen95@163.com"
] | jiangshen95@163.com |
6886ca60b7d0e64a99666b0828a9c7408a77ac56 | c5cd71edf65863c30e4ed56ceaa80f7a8d3f6d4c | /ptlsim/build/cache/bus.cpp | 5c83621c4f3f63a4dece2df7691da7ecb6258516 | [] | no_license | zhongliang/cache_life | 687aa1cbafb262ee0d982c69162483fb71da3b06 | 1a024999035905091cd5946610c547f9719e55e2 | refs/heads/master | 2021-01-01T17:21:30.374958 | 2010-11-09T07:43:45 | 2010-11-09T07:43:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,296 | cpp |
/*
* MARSSx86 : A Full System Computer-Architecture Simulator
*
* 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 restriction, including without limitation the rights
* to use, c... | [
"zoo@nus.edu.sg"
] | zoo@nus.edu.sg |
3b5a59eb59be73e355d24b0e0cfabc1261e1db8f | d29399f93b50cc2c677c41a40b97767dac580604 | /PAT/A/1005.cpp | 398674032cbf1d9ee7a48fa84372a1a1e182371f | [] | no_license | lmh760008522/ProgrammingExercises | 81636f209a150062c2c7b1ea78c441a7b1c0b68d | 821fd0d36f2eab11386dec1b6bcdaba223727c48 | refs/heads/master | 2021-10-08T20:11:35.547047 | 2018-12-17T08:12:51 | 2018-12-17T08:12:51 | 157,045,843 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 787 | cpp | #include<iostream>
#include<stack>
#include<string>
using namespace std;
void pprint(int x){
switch(x){
case 1:printf("one");break;
case 2:printf("two");break;
case 3:printf("three");break;
case 4:printf("four");break;
case 5:printf("five");break;
case 6:printf("six");break;
case 7:printf("... | [
"lmh760008522@gmail.com"
] | lmh760008522@gmail.com |
a29bb22f15c8d559aafd9fc86e4ebcc7d903e819 | c5b9f0fabffb6b2d13c6e350c8187a922709ac60 | /devel/.private/dynamic_introspection/include/dynamic_introspection/DoubleParameter.h | 6824239d355873e147027133a5ece54a108f1d93 | [] | no_license | MohamedEhabHafez/Sorting_Aruco_Markers | cae079fdce4a14561f5e092051771d299b06e789 | 0f820921c9f42b39867565441ed6ea108663ef6c | refs/heads/master | 2020-12-09T02:43:00.731223 | 2020-01-15T17:31:29 | 2020-01-15T17:31:29 | 233,154,293 | 0 | 0 | null | 2020-10-13T18:46:44 | 2020-01-11T00:41:38 | Makefile | UTF-8 | C++ | false | false | 5,871 | h | // Generated by gencpp from file dynamic_introspection/DoubleParameter.msg
// DO NOT EDIT!
#ifndef DYNAMIC_INTROSPECTION_MESSAGE_DOUBLEPARAMETER_H
#define DYNAMIC_INTROSPECTION_MESSAGE_DOUBLEPARAMETER_H
#include <string>
#include <vector>
#include <map>
#include <ros/types.h>
#include <ros/serialization.h>
#includ... | [
"mohamed@radiirobotics.com"
] | mohamed@radiirobotics.com |
ef5b8c4292fa7b3eb584d6de9b771c8f5c669baa | 3d739f27ee3e4c86e7aeb765d3b2668ec7918147 | /Others codes/con1F.cpp | 4fd803f2c8e62b12005ed9e7b8376a02c15b2796 | [] | no_license | monircse061/My-All-Codes | 4b7bcba59a4c8a3497d38b6da08fca1faf0f6110 | b5c9f4367efd134c08a4f1eff680202484963098 | refs/heads/master | 2023-04-13T18:55:50.848787 | 2021-04-24T03:46:45 | 2021-04-24T03:46:45 | 361,062,511 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 25,693 | cpp | #include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#include<string.h>
//int password();
void addrecord();
void viewrecord();
void editrecord();
//void editpassword();
void deleterecord();
struct record
{
char time[6];
char name[30];
char place[25];
char duration[10];
char note[500];
} ;
i... | [
"monirahammod097@gmail.com"
] | monirahammod097@gmail.com |
39dd7cf19426180533b1c5ee145220b3d4c8ba41 | cdef6034b2b275a2c980d2bbfb2f14a77ce9c8f9 | /OpenEXR/openexr-1.7.0/IlmImf/ImfTileOffsets.cpp | 5447f8f51284e23bdb78e803ea7a50d58065147d | [] | no_license | exavi/ios-openexr | e1014f93542043d5f870c501ecd39955002990c8 | 0bea4ebef29a3bd22cf159643afc375c2f1a1b0a | refs/heads/master | 2021-01-19T21:28:32.942192 | 2013-03-21T21:20:18 | 2013-03-21T21:20:18 | 8,662,345 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 9,115 | cpp | ///////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2004, Industrial Light & Magic, a division of Lucas
// Digital Ltd. LLC
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the f... | [
"byexavi@gmail.com"
] | byexavi@gmail.com |
7871bcecaa06fbbf66f05eabcacf20e97e45426f | 9984cf39a4ca67c35f3fbdb6ce96c1d5630663e2 | /apps/evmc/vbucket_config.cc | 3d3c91a780974465f184300cd5759a3cd1140cd1 | [
"BSD-3-Clause"
] | permissive | Qihoo360/evpp | 89e7f24793a65e183edee6965fc71e3930073585 | 477033f938fd47dfecde43c82257cd286d9fa38e | refs/heads/master | 2023-08-25T04:46:21.628781 | 2022-11-06T10:33:10 | 2022-11-06T10:33:10 | 83,792,790 | 3,665 | 1,074 | BSD-3-Clause | 2023-08-02T07:15:36 | 2017-03-03T11:46:03 | C++ | GB18030 | C++ | false | false | 5,831 | cc | #include "vbucket_config.h"
#include <map>
#include <cassert>
#include <rapidjson/filereadstream.h>
#include <rapidjson/document.h>
#include <rapidjson/writer.h>
#include <rapidjson/stringbuffer.h>
#include <libhashkit/hashkit.h>
#include "random.h"
#include "extract_vbucket_conf.h"
#include "likely.h"
namespace ... | [
"zieckey@gmail.com"
] | zieckey@gmail.com |
00f92d9398f74e3fe51a5aa1b316d9aafe9e98a2 | 3422d4a068bbb86d97e29c3a253e3e57426b6eee | /src/BVHNode.hpp | 8e1704e3098754ee5a9e6d08d814e113743a7912 | [
"MIT"
] | permissive | kiorisyshen/LearnRayTracing | 018077948788fe1910eb4bd89c3418188bac6cdd | 81527a43eb1c9034424be0b23d75839c580e1d79 | refs/heads/master | 2022-04-29T02:11:25.773210 | 2020-04-19T02:25:35 | 2020-04-19T02:25:35 | 254,781,428 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 975 | hpp | #pragma once
#include "HittableList.hpp"
namespace LearnRT {
class BVHNode : public IHittable {
public:
BVHNode(const HittableList &list, double time0, double time1) {
std::vector<std::shared_ptr<IHittable>> listCopy;
for (auto &item : list.getList()) {
listCopy.push_back(item);
... | [
"kiorisyshen@gmail.com"
] | kiorisyshen@gmail.com |
b2685d458b6b7890130329b1f7613469707d3316 | f1fca9dd580c9675d50c1f3e194e5763410850d4 | /EncryptedString/EncryptedString.cpp | 72bd7e9df71e721c3b8a049036872df572d076a6 | [] | no_license | zandratharp2012/CPP.Practice | 8b54258ff9bc4cd312ddc363bda360c6265cc617 | 0bec683e669bc252c67c687b070d4b60b0801105 | refs/heads/master | 2020-03-18T13:07:45.493081 | 2019-08-03T05:46:53 | 2019-08-03T05:46:53 | 134,762,084 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,522 | cpp | /*
***************************************************************
Program Description: EncryptedString Implementation File
*****************************************************************
*/
#include "EncryptedString.h"
#include <iostream>
using namespace std;
EncryptedString::EncryptedString() /... | [
"zandra.tharp@g.austincc.edu"
] | zandra.tharp@g.austincc.edu |
655f427c0bc2fd960f5af9cbfbcb6cadbc5c5343 | 8bb7e4b0f6c47793c0f643dc7f2df8b7f5646ca6 | /1501 - Data Structures and Algorithms - Spring 2015/Assignments/DS-Spring2015-Assignment-03/DS-Spring2015-Assignment-03-Solution/DS-Spring2015-Assignment-03-Q3/MainQ3.cpp | 2ba5170d8242dc663707714ac98624716455f177 | [] | no_license | inf-eth/i02-0491-courses | 405cb0d534fed643434dd2126776cbe030af4d13 | f7e2ea222aeb2b21bcc9d2793a8652cc7f5afe23 | refs/heads/master | 2021-01-10T09:47:16.518013 | 2015-07-23T17:09:14 | 2015-07-23T17:09:14 | 46,210,614 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 311 | cpp | #include "Tree.h"
#include <iostream>
using namespace std;
int main()
{
Tree TestTree;
char* Prefix="(*(-(a)(*(d)(e)))(+(b)(c)))";
TestTree.MakeTree(Prefix);
TestTree.Preorder();
cout << endl;
TestTree.Inorder();
cout << endl;
TestTree.Postorder();
cout << endl;
return 0;
}
| [
"infinity.ethereal@9fa76b84-cec5-8abd-45b1-de927d2ca524"
] | infinity.ethereal@9fa76b84-cec5-8abd-45b1-de927d2ca524 |
954ac2a4292df05b1714d41dcb3d6e36140e5f8b | f348d86e9396896f616f31e9d5d15a1538105739 | /chapter2/c2_5.cpp | dadfe6f7f2d400ea441cd78ed712840b6d0b010d | [] | no_license | valleebleue/cpp_prime | 8434e809182e87db5943e5139608fb0a62642296 | ea87b56aa7036ea6ba13be8c186420f225a405a8 | refs/heads/master | 2023-01-02T05:30:21.409367 | 2020-10-15T18:52:52 | 2020-10-15T18:52:52 | 303,066,268 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 248 | cpp | #include <iostream>
int cal_Fahrenhit()
{
int i;
std::cout << "please enter a Celcius value:";
std::cin >> i;
std::cout << i << " degrees Celcius is " << i *1.8 + 32 << " degrees Fahrenhit" <<std::endl;
}
int main(){
cal_Fahrenhit();
} | [
"yujie_hu@hotmail.fr"
] | yujie_hu@hotmail.fr |
03d438e1217c7ece86e6cf90ab8f947e8dca59af | 8f0d8c50c7428263cbf6e78bf19c12c5f7730ea7 | /tutorial31/tutorial31.cpp | 42c753d21ffe8af3552fc906f577071dc817f9a2 | [] | no_license | tpphu/opengl | a69b3b2165e1302318b1458192a99e613c1f84ab | d05061c2ab0ada00dc7b3b32a17c6af9f6a6c995 | refs/heads/master | 2016-09-10T00:42:36.270607 | 2014-12-17T18:05:23 | 2014-12-17T18:05:23 | 27,969,727 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,464 | cpp | /*
Copyright 2011 Etay Meiri
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 3 of the License, or
(at your option) any later version.
This program is distributed... | [
"vietean@gmail.com"
] | vietean@gmail.com |
7177feb5320023e389ad6eef50572a2db1887a77 | dc81c76a02995eb140d10a62588e3791a8c7de0d | /PTv3/PTCommunication/StrategyItem.h | 24dff07d2e1b22a300a07d6de3363aec8044d94e | [] | no_license | xbotuk/cpp-proto-net | ab971a94899da7749b35d6586202bb4c52991461 | d685bee57c8bf0e4ec2db0bfa21d028fa90240fd | refs/heads/master | 2023-08-17T00:52:03.883886 | 2016-08-20T03:40:36 | 2016-08-20T03:40:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,974 | h | #pragma once
#include "Enums.h"
#include "TriggerItem.h"
#include "entity/message.pb.h"
using namespace System;
using namespace System::Collections::Generic;
using namespace System::Runtime::InteropServices;
namespace PTEntity {
public ref class StrategyItem
{
public:
StrategyItem(void);
propert... | [
"zxiaoyong@163.com"
] | zxiaoyong@163.com |
9beb87206164ae398e13736dc48e3266238bb192 | a3e638ce948335801a6c4498530c4b9dda34f415 | /prototypes/single-feather/single-feather.ino | d944d331995f8d5dabc4a3010fc7e22bffb61d1f | [] | no_license | chris-schmitz/pumpkin-cauldron | 31282e2280d394ae55609dc7a2ab8b867d952be3 | a1cdcb6e406f2d4c3fedb9c1b609156328d2f18a | refs/heads/master | 2020-08-01T03:49:18.920672 | 2019-11-10T03:22:08 | 2019-11-10T03:22:08 | 210,852,249 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,371 | ino | #include <SPI.h>
#include <MFRC522.h>
#include <Adafruit_NeoPixel.h>
#include <Adafruit_VS1053.h>
#include <SD.h>
#define DEBUG false
#define USING_MUSIC_MAKER true
// ^ Music Maker settings
#define VS1053_RESET -1 // VS1053 reset pin (not used!)
#define VS1053_DCS 10 // VS1053 Data/command select pin (output)
#defi... | [
"schmitz.chris@gmail.com"
] | schmitz.chris@gmail.com |
338a64bbd0c16ce11e460329b12e0812f2133f4f | 19942c90af650e6f781c2048c069c274f4b2511c | /sa-acop/v2/simulation.h | 0b05c0b096467e9d030c2e8c278e04880d4f872b | [] | no_license | tarstars/coeff_tune | 48a9c0bca859e1bb1c3568675e98e519262eb66a | f9f2f6861be476e4d0eac45ce2ded9c8767b1db5 | refs/heads/master | 2021-01-17T06:35:25.030647 | 2018-03-29T21:48:25 | 2018-03-29T21:48:25 | 4,085,781 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,098 | h | #ifndef __SA_ACOP__SIMULATION__
#define __SA_ACOP__SIMULATION__
#include <iostream>
#include <gsl/gsl_rng.h>
using ::std::ostream;
struct Constants{
double a, b, c, d;
friend ostream& operator<<(ostream& os, const Constants& constants);
};
struct AnnealingParams{
int iterationsNumber;... | [
"eralde.g@gmail.com"
] | eralde.g@gmail.com |
819a6eeeca3675725387c49c4e40657c1e95afa6 | a13032cfb71844f8f44b12a74297293ddb85ed48 | /main.cpp | be286e14bf729ca3f5363a95d8fa1a8540387151 | [] | no_license | geeksKK8/maze | f0e8417eadadb84ac8da3e5b5778b335e171b943 | 434608c6251165c7acb1660f91136d60ca439894 | refs/heads/main | 2023-03-26T00:04:41.577644 | 2021-03-28T08:55:00 | 2021-03-28T08:55:00 | 352,281,737 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 36,238 | cpp | #define _CRT_SECURE_NO_WARNINGS
#include <cstdlib>
#include "gl/glut.h"
#include <cstdio>
#include <cstring>
#include <ctime>
#include <Windows.h>
#include <iostream>
#include <algorithm>
#include <mmsystem.h>
#pragma comment(lib,"winmm.lib")
using namespace std;
#define MAXN 40//地图数组的大小
#define MAX_TEXTURE 10//最多纹理数... | [
"3180104180@zju.edu.cn"
] | 3180104180@zju.edu.cn |
0dd9a620f58c6d62067a8b39718e6d7b27c8491f | e53f90f835c93a008ee042ebc66b44063dfbd395 | /book_algorithm_solution/4.recursive_divide-and-conquer/4.4.cpp | 76d93c0df2d0ecf88cce8f627e769791743f06cb | [] | no_license | tomonakar/practice-cpp-argorithm | 41805ac87f9686fa59178ce12c220f7ae5b4ffac | 8847df18db5ac3efacc6e1fbba3274bc3773f222 | refs/heads/main | 2023-04-03T06:32:20.591401 | 2021-04-08T22:33:46 | 2021-04-08T22:33:46 | 347,498,824 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 287 | cpp | #include <iostream>
using namespace std;
// ユークリッド互助法
// @see https://ja.wikipedia.org/wiki/%E3%83%A6%E3%83%BC%E3%82%AF%E3%83%AA%E3%83%83%E3%83%89%E3%81%AE%E4%BA%92%E9%99%A4%E6%B3%95
int GCD(int m, int n)
{
if (n == 0)
{
return m
}
return GCD(n, m % n);
} | [
"tomohisa.nak@gmail.com"
] | tomohisa.nak@gmail.com |
a4d9c8a97d6652504b0cb7804c906c4989f60aba | 95b0c785602c942bf6a5d762e905f29a4f129c11 | /mainwindow.h | f1ed579c3cca33a65204723f5294dc4a4b102687 | [] | no_license | veliKerril/Stock | 194933249d3da395876e90cb26828a28cba24871 | 6c5d98d3a5d0b6757265d82c91ac16d7fd82fbbe | refs/heads/master | 2022-10-18T03:29:36.458330 | 2020-06-09T12:14:35 | 2020-06-09T12:14:35 | 262,366,037 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 585 | h | #ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "container.h"
#include "position.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
private slots:
void on_addPos_clic... | [
"velikirilll@gmail.com"
] | velikirilll@gmail.com |
ab15e3d3de713be1458ae4dc49ce92a15a56da06 | c10709c25dea90dbdd003fd96164867960dc600b | /src/I2T-iota-arduino-lib.cpp | c78f90667f338ab78fe28d22585b7b1a3a95e524 | [
"Apache-2.0"
] | permissive | iot2tangle/I2T-iota-arduino-lib | 95799d3d86e0fbcde936602e8b86f7f00eee2502 | 43a0f4a2f43321e8d22794670eed586916cce4dc | refs/heads/main | 2023-05-30T19:41:17.067869 | 2021-05-25T22:55:09 | 2021-05-25T22:55:09 | 357,567,231 | 0 | 1 | Apache-2.0 | 2021-05-25T22:55:10 | 2021-04-13T13:40:50 | C++ | UTF-8 | C++ | false | false | 7,791 | cpp | #include <Arduino.h>
#include "Wire.h"
#include <WiFi101.h>
#include <ArduinoHttpClient.h>
#include "I2T-iota-arduino-lib.h"
//Sensors
#include <TemperatureZero.h>
#include "BlueDot_BME280.h"
#include <MPU6050_light.h>
#include <BH1750_WE.h>
#define ENABLE_SOUND 5
#define VALUE_SOUND 4
TemperatureZero TempZero = Tem... | [
"gustavobelbruno@gmail.com"
] | gustavobelbruno@gmail.com |
7e849e05081a5e8e4af8b2d24218465beb8fa89b | acfa86a0764bf5e7641c43e75255e5d38af0f73c | /main/structures/Matrix3.h | d5deaa4ea19e00fce223ff6f5d9104375df07714 | [
"MIT"
] | permissive | andrewwang101/kite | 9e58821e6fcb634f6fab9cb24bab0e04cab145ca | f33ee5d98330faa101b230bbb7ec2eb07526223a | refs/heads/master | 2023-07-18T22:08:54.363770 | 2021-07-02T18:42:13 | 2021-07-02T18:42:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 872 | h | //
// Created by Leonard Koll on 19.05.21.
//
#ifndef KITE_MATRIX3_H
#define KITE_MATRIX3_H
#include <array>
using namespace std;
class Matrix3 {
public:
static float get (array<float, 9>& m, int row, int col);
static void set (array<float, 9>& m, int row, int col, float value);
static array<float, 3> ... | [
"leonard.koll@netlight.com"
] | leonard.koll@netlight.com |
34c51c6c041ae5047c32456404a7d8694630fa96 | 12d85105c5260fb35e2352bbc18cce9953f7133c | /first-homework/include/Ball.hpp | 06136daeeaa33dd54e271d3914dcc614b31ed5e1 | [] | no_license | evrenvural/data-scientist-homework | bb48500d880dbef43ca3dcca3e43968f0a42209a | d53bd12ed6d2b12bba7ec0ef9846e5b1bc34e4db | refs/heads/master | 2020-12-08T23:57:46.069348 | 2020-01-10T21:17:29 | 2020-01-10T21:17:29 | 233,130,348 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 220 | hpp | #ifndef BALL_HPP
#define BALL_HPP
using namespace std;
#include <iostream>
#include <stdlib.h> /* srand, rand */
class Ball{
private:
char value;
public:
Ball();
~Ball();
char getValue();
};
#endif
| [
"evrenvural4@gmail.com"
] | evrenvural4@gmail.com |
0d8f0f722b754e687ed33a93c690bc82583d79b8 | 51635684d03e47ebad12b8872ff469b83f36aa52 | /external/gcc-12.1.0/libstdc++-v3/testsuite/20_util/unique_ptr/cons/ptr_deleter_neg.cc | 1a5a26c0b47a6ae71471557081accffdc23e7d86 | [
"LGPL-2.1-only",
"GPL-3.0-only",
"GCC-exception-3.1",
"GPL-2.0-only",
"LGPL-3.0-only",
"LGPL-2.0-or-later",
"Zlib",
"LicenseRef-scancode-public-domain"
] | permissive | zhmu/ananas | 8fb48ddfe3582f85ff39184fc7a3c58725fe731a | 30850c1639f03bccbfb2f2b03361792cc8fae52e | refs/heads/master | 2022-06-25T10:44:46.256604 | 2022-06-12T17:04:40 | 2022-06-12T17:04:40 | 30,108,381 | 59 | 8 | Zlib | 2021-09-26T17:30:30 | 2015-01-31T09:44:33 | C | UTF-8 | C++ | false | false | 1,485 | cc | // { dg-do compile { target c++11 } }
// Copyright (C) 2010-2022 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. 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 Found... | [
"rink@rink.nu"
] | rink@rink.nu |
27f6d2a297bf0617ca54202b83c01cd1dd4211b3 | 289288d0bf3f0d03fd590946c1c1f293aaf75726 | /Plugins/BlueprintAssist/Source/BlueprintAssist/GraphFormatters/AnimationGraphFormatter.cpp | 138f9bd9293df738590db6c6ef4c0a8d58e848bf | [] | no_license | BlenderGamer/PitchSample | 4722d9a37875ef23f0a84d1ddb824e46551c7170 | 52fa8941982e36c7cfae043e6d239d46333ed6b9 | refs/heads/master | 2023-02-25T16:57:22.260228 | 2021-02-02T14:42:35 | 2021-02-02T14:42:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 409 | cpp | // Copyright 2020 fpwong, Inc. All Rights Reserved.
#include "AnimationGraphFormatter.h"
FAnimationGraphFormatter::FAnimationGraphFormatter(const TSharedPtr<FBAGraphHandler>& InGraphHandler)
: FSimpleFormatter(InGraphHandler)
{
FormatterDirection = EGPD_Input;
}
FBAFormatterSettings FAnimationGraphFormatter::GetFo... | [
"77409105+Dmonics@users.noreply.github.com"
] | 77409105+Dmonics@users.noreply.github.com |
a91101ccae1d07e74cf77190410660e5865f928e | f4bbb7466cd386709bc9f5f66d47333ca2b16ed9 | /solutions/723-candy-crush/candy-crush.cpp | 4e1e613858eba469b850e2cb50ab74a5e81168a4 | [] | no_license | fr42k/leetcode | 790d4eeaafeb9f6af8471ee4f245c0bab5d5198a | de3455d82241d142ccb43c9e719defca7bf3ebd5 | refs/heads/master | 2022-11-05T15:47:50.778505 | 2022-10-22T03:38:49 | 2022-10-22T03:38:49 | 133,931,381 | 4 | 0 | null | 2018-05-18T09:12:48 | 2018-05-18T09:12:48 | null | UTF-8 | C++ | false | false | 3,561 | cpp | // This question is about implementing a basic elimination algorithm for Candy Crush.
//
// Given a 2D integer array board representing the grid of candy, different positive integers board[i][j] represent different types of candies. A value of board[i][j] = 0 represents that the cell at position (i, j) is empty. The g... | [
"fr42k@yahoo.com"
] | fr42k@yahoo.com |
1927cea649feac762dbb617c3d69ddd4bb8bd2be | b487b9f5e05a100a20ae6662e359f002c44efc27 | /src/qt/bitcoingui.h | 247c97bcc66ac413e0a55d7c546e1f785d872771 | [
"MIT"
] | permissive | blacksteven/flowercoin | 5056715a251774c19eeb18a2ed5f8e0fc7367c91 | b200f4305b8e1df422d485e6b1be800f0b8add86 | refs/heads/main | 2023-02-25T03:05:49.410463 | 2021-01-31T04:22:46 | 2021-01-31T04:22:46 | 334,570,971 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 9,228 | h | // Copyright (c) 2011-2014 The Bitcoin developers
// Copyright (c) 2017-2018 The PIVX developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_QT_BITCOINGUI_H
#define BITCOIN_QT_BITCOINGUI_H
#if defined(HA... | [
"sofa.somse@gmail.com"
] | sofa.somse@gmail.com |
90d48ae9d2f86692f1b36fcaaead63c0cfe44796 | 8a7219b0345e71a7e30227c1fc88455558151a52 | /Engine/Utils/Types/Profiler.h | 2dd149a58bae6d60cfb448b65e8e4b49c9f9b8ab | [] | no_license | sorcerer-com/MCS | eed1771bec6c3035e8a34c5ffe4a3c237dd7f8dc | 8f5787072e59c6365fba35c48936189af28fd199 | refs/heads/master | 2020-03-30T19:06:05.352121 | 2015-11-05T12:51:54 | 2015-11-05T12:51:54 | 25,826,719 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,532 | h | // Image.h
#pragma once
#include <chrono>
#include <mutex>
#include "..\..\Engine.h"
namespace MyEngine {
#define Profile Profiler prof(__FUNCTION__)
#define ProfileLog Profiler prof(__FUNCTION__, true)
string duration_to_string(chrono::system_clock::duration delta);
struct Profiler
{
private:
... | [
"sorcerer_com@abv.bg"
] | sorcerer_com@abv.bg |
93082705db9614d40f7b8bd7936fec5eb0577da1 | 64178ab5958c36c4582e69b6689359f169dc6f0d | /vscode/wg/sdk/UBP_InteractionWidget_C.hpp | 2bc8d95b371f79be15791138d55e6d8617373619 | [] | no_license | c-ber/cber | 47bc1362f180c9e8f0638e40bf716d8ec582e074 | 3cb5c85abd8a6be09e0283d136c87761925072de | refs/heads/master | 2023-06-07T20:07:44.813723 | 2023-02-28T07:43:29 | 2023-02-28T07:43:29 | 40,457,301 | 5 | 5 | null | 2023-05-30T19:14:51 | 2015-08-10T01:37:22 | C++ | UTF-8 | C++ | false | false | 12,694 | hpp | #pragma once
#include "UInteractionBaseWidget.hpp"
#ifdef _MSC_VER
#pragma pack(push, 1)
#endif
namespace PUBGSDK {
struct alignas(1) UBP_InteractionWidget_C // Size: 0x638
: public UInteractionBaseWidget // Size: 0x590
{
private:
typedef UBP_InteractionWidget_C t_struct;
typedef ExternalPtr<t_st... | [
"1395329153@qq.com"
] | 1395329153@qq.com |
38d488e5f60bd8469e70a6921db7299641f84951 | a3d6556180e74af7b555f8d47d3fea55b94bcbda | /chrome/browser/ash/login/screens/drive_pinning_screen.cc | 74f9c52630a83a57dc7310c892657f093c9763ca | [
"BSD-3-Clause"
] | permissive | chromium/chromium | aaa9eda10115b50b0616d2f1aed5ef35d1d779d6 | a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c | refs/heads/main | 2023-08-24T00:35:12.585945 | 2023-08-23T22:01:11 | 2023-08-23T22:01:11 | 120,360,765 | 17,408 | 7,102 | BSD-3-Clause | 2023-09-10T23:44:27 | 2018-02-05T20:55:32 | null | UTF-8 | C++ | false | false | 9,136 | cc | // Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <iomanip>
#include "ash/constants/ash_features.h"
#include "base/check_is_test.h"
#include "base/metrics/histogram_functions.h"
#include "chrome/browser/ash/drive/dri... | [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
247721eafe37dfeb6b5b1434e1d13a2b79ee4b3e | f86cd3e4e6f35fc0664b8765b4ea8e1eaf9a4e2c | /client/client/main.cpp | 8878826cc8dc90665eec3ac6e45d18282dda6b39 | [] | no_license | shybovycha/multiplayer-test1 | 3d9275ec6be1eb7ae3e0f5f7ce2ebe5ea710006a | 1a44d09f8d8efc4850e59d73851d4e0bb84b68ea | refs/heads/master | 2020-05-26T21:32:51.782585 | 2014-02-09T01:10:59 | 2014-02-09T01:10:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,037 | cpp | #include <QString>
#include <QStringList>
#include <QMap>
#include <QRegExp>
#include <QDebug>
#include <stdio.h>
#include <vector>
#include <map>
#include <SFML/Graphics.hpp>
#include <SFML/System.hpp>
#include <SFML/Network.hpp>
#include <SFML/Window.hpp>
#define PLAYER_UPDATE_DELAY 0.02
class Player
{
public:
... | [
"shybovycha@gmail.com"
] | shybovycha@gmail.com |
5457980123a0e8450f75ff6aac93ac081d4b5451 | 47e7526dfd0f84cf95d4da8f7cbc7143b4742de3 | /libxbkio/include/.svn/text-base/xbkio.h.svn-base | 159d3ee6ce3ce63a93f09675745b2e901b81ae90 | [] | no_license | x-itec/libxbkio | 79b6c07b6c1d409eea3c95e8209013a46d71a2f5 | c0102d9848172ab2307563993ea35678e7eca5f7 | refs/heads/master | 2021-01-23T08:56:52.183576 | 2012-09-06T22:52:07 | 2012-09-06T22:52:07 | null | 0 | 0 | null | null | null | null | ISO-8859-3 | C++ | false | false | 1,119 | #ifndef libxbkioh
#define libxbkioh
#include<string>
#include<stdio.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <stdlib.h>
#include <vector>
#include <time.h>
#include <sys/types.h>
#include <sys/resource.h>
#include <string.h>
#include <sys/types.h>
#include <sys/uio.h>
#include <unistd.h>
#include <map>... | [
"x-itec@freenet.de"
] | x-itec@freenet.de | |
033c78be03f59cc4651367c3e1cf2aa66aaac43f | 34bdedfcfddfe090165a9072b3940604997b4843 | /src_arr/permutations_array.h | 888237055b54bf5e945ae336f9d2ae805644fd8c | [] | no_license | innovatelogic/junk | 84850baa589d11701b636a0f384c38f46edb1539 | f6f36ac0a9cd6e0d978fe0621ddabd3f33b91638 | refs/heads/master | 2021-11-15T06:28:35.966336 | 2021-10-04T21:50:25 | 2021-10-04T21:56:16 | 63,451,848 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,430 | h | #pragma once
#include "defexport.h"
#include <vector>
#include <functional>
#include <assert.h>
namespace junk
{
//----------------------------------------------------------------------------------------------
template<typename T>
JUNK_EXPORT void permutate_impl(const std::vector<T> &in,
... | [
"westgames@gmail.com"
] | westgames@gmail.com |
96209dafe8080796fde82c98dacb944fc2633756 | 50f8c138da0165fa140c3241291aa2b0a8a14f99 | /barrels.cpp | 78eae4a04e8285d41834b7d5a43a69274d768010 | [] | no_license | Priybhanu99/My-Codes | c5da0821348939d75498e2751bc6c63d5e572294 | 4dc2e93fb941c4166b3b687a76358a1f309cc976 | refs/heads/master | 2021-05-19T12:22:09.830851 | 2021-01-17T15:22:23 | 2021-01-17T15:22:23 | 251,694,773 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 577 | cpp | #include <bits/stdc++.h>
using namespace std;
#define int long long int
#define P pair<int,int>
#define pb push_back
#define F first
#define S second
int32_t main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);cout.tie(NULL);
#ifndef ONLINE_JUDGE
freopen("input.txt","r",stdin);
freopen("output.txt","w",std... | [
"bhanuyadav1999.by@gmail.com"
] | bhanuyadav1999.by@gmail.com |
7bc416e6bcf514a34c1b4e63557c022268c36b87 | 7f2ea1087250105349c33163854fe04e2f88e3b5 | /src/core/include/openOR/Plugin/Config.hpp | ecec77b82e10745847d5d180f6525d97effe53f5 | [
"MIT"
] | permissive | avinfinity/UnmanagedCodeSnippets | f5adbd5e72bd0919bf3621da14e60c60f0132401 | 2bd848db88d7b271209ad30017c8f62307319be3 | refs/heads/master | 2021-04-16T15:31:52.673438 | 2020-03-23T07:55:27 | 2020-03-23T07:55:27 | 249,366,746 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,824 | hpp | //****************************************************************************
// (c) 2008, 2009 by the openOR Team
//****************************************************************************
// The contents of this file are available under the GPL v2.0 license
// or under the openOR comercial license. see
// /Doc... | [
"avinfinity@gmail.com"
] | avinfinity@gmail.com |
5486139ae814f24664a0c15a87912e59a681d25b | 1b526bc0482d068e47b9e7e6c4abbb5dd1d9bfa2 | /devel/include/intera_motion_msgs/Trajectory.h | c64fb317dcd9debcd6a9ea9d99493753bf7258f0 | [] | no_license | ahadrauf2020/ee290_final_project | df7d6b5f53d36a588d204cd65cea83c2f7b29bc0 | 3a2cd3b10c39d2bcb46d9f504bdfebcf0de9195d | refs/heads/master | 2022-06-29T03:25:32.670331 | 2020-05-01T17:52:28 | 2020-05-01T17:52:28 | 257,447,031 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,844 | h | // Generated by gencpp from file intera_motion_msgs/Trajectory.msg
// DO NOT EDIT!
#ifndef INTERA_MOTION_MSGS_MESSAGE_TRAJECTORY_H
#define INTERA_MOTION_MSGS_MESSAGE_TRAJECTORY_H
#include <string>
#include <vector>
#include <map>
#include <ros/types.h>
#include <ros/serialization.h>
#include <ros/builtin_message_t... | [
"ahadrauf@berkeley.edu"
] | ahadrauf@berkeley.edu |
08f21c5f9f66973564777acdd1f81386ce9ec2e2 | bb9b83b2526d3ff8a932a1992885a3fac7ee064d | /src/modules/osg/generated_code/ActiveUniformMap.pypp.cpp | 81f99ef77e73f761581e3c7192d707993b28a0d8 | [] | no_license | JaneliaSciComp/osgpyplusplus | 4ceb65237772fe6686ddc0805b8c77d7b4b61b40 | a5ae3f69c7e9101a32d8cc95fe680dab292f75ac | refs/heads/master | 2021-01-10T19:12:31.756663 | 2015-09-09T19:10:16 | 2015-09-09T19:10:16 | 23,578,052 | 20 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 532 | cpp | // This file has been generated by Py++.
#include "boost/python.hpp"
#include "indexing_suite/container_suite.hpp"
#include "indexing_suite/map.hpp"
#include "wrap_osg.h"
#include "_ActiveVarInfo__value_traits.pypp.hpp"
#include "activeuniformmap.pypp.hpp"
namespace bp = boost::python;
void register_ActiveUniformMap... | [
"brunsc@janelia.hhmi.org"
] | brunsc@janelia.hhmi.org |
0a49c1216debb22abffffd2e98908aa71c61f823 | 5087884e0d7cab107e69a9fe7035ad5c338e7f77 | /include/TBLTree.h | 44b1b3c136499ad63430fba2f588e740886bd3ae | [
"LicenseRef-scancode-other-permissive"
] | permissive | jimregan/fnTBL | f62aec69064310f62e4ea2ebc73b8cc707f5c364 | df5be398eeec9590149d59c439fcea7743527182 | refs/heads/master | 2020-05-18T09:50:13.033335 | 2015-09-07T11:28:46 | 2015-09-07T11:28:46 | 42,048,391 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 3,443 | h | // -*- C++ -*-
/*
Implements the probabilistic tree needed for computing the probabilities
associated with the rules.
This file is part of the fnTBL distribution.
Copyright (c) 2001 Johns Hopkins University and Radu Florian and Grace Ngai.
Permission is hereby granted, free of charge, to any person obtaini... | [
"joregan@gmail.com"
] | joregan@gmail.com |
dab3888eafcc66d8f73e5ecd93e0211e1cb3be0a | 9259f0e6387e85f4198931f0c489beea8e580bf9 | /10.0.15063.0/winrt/internal/Windows.Networking.Connectivity.3.h | 8b208a687d714ad356440c2e8f9898cf61bf63a1 | [
"MIT",
"LicenseRef-scancode-generic-cla"
] | permissive | part-machine/cppwinrt | 68fdd6ff4be685b9626451e94a113a7c1827fc23 | 5086290db972a5ed15d1a3e3438b57ce2f6eecd2 | refs/heads/master | 2021-01-16T18:39:49.206730 | 2017-07-29T17:54:09 | 2017-07-29T17:54:09 | 100,108,083 | 0 | 0 | null | 2017-08-12T11:28:45 | 2017-08-12T11:28:45 | null | UTF-8 | C++ | false | false | 7,470 | h | // C++ for the Windows Runtime v1.0.170406.6
// Copyright (c) 2017 Microsoft Corporation. All rights reserved.
#pragma once
#include "Windows.Networking.Connectivity.2.h"
WINRT_EXPORT namespace winrt {
namespace Windows::Networking::Connectivity {
template <typename H> struct impl_NetworkStatusChangedEv... | [
"kwelton@microsoft.com"
] | kwelton@microsoft.com |
518b4aeca42c2d082472ddfd63bb56fdb21d1fec | 7c78a9ca4f343c358c99397830a12888b3876ff7 | /MultiplicacionMemoria.cpp | 1541965c414e9b86759b0a588c21de38a28f05ae | [] | no_license | fryzito/Concurrente-y-Paralelo | 058f7e1b6d3bd4e4bcff3bd3f52f20a2c6d03287 | d84748a33361e6df3dec5c16841f63b44acbbd27 | refs/heads/master | 2022-05-17T05:45:59.865724 | 2022-04-28T19:57:15 | 2022-04-28T19:57:15 | 59,216,236 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,016 | cpp | #include <bits/stdc++.h>
#define CLOCK print("clock %lf\n",(double)clock()/CLOCKS_PER_SEC);
using namespace std;
int main(){
int N;
scanf("%d\n",&N);
int A[N][N];int B[N][N]; int res[N][N];
//leendo matrices
for(int i=0;i<N;i++){
for(int j=0;j<N;j++) {
scanf("%d",&A[i][j]);
}
scanf("\n");
... | [
"fryzito@gmail.com"
] | fryzito@gmail.com |
6d0b96e2f0c6c4f2033a464a8784561fe8c78c0f | bb74da541406a89d49f270f841060e48e780c1a2 | /RedisStudio/DBClient.h | 0613950555a37355c0b11b8e50dca58b229a091b | [] | no_license | xiejiulong/RedisStudio | f063ceb526d71a7ccd6e03b8fac18a2d14bf92ed | 4b18d96dd8aa3b1967ad822d06bd84db89ae76ac | refs/heads/master | 2021-06-14T15:09:27.567167 | 2021-05-11T06:51:33 | 2021-05-11T06:51:33 | 185,119,402 | 1 | 0 | null | 2019-05-06T03:45:15 | 2019-05-06T03:45:15 | null | UTF-8 | C++ | false | false | 1,847 | h | #pragma once
#include <string>
#include <list>
#include <map>
class RedisResult;
class DBClient {
public:
typedef std::list<std::string> TSeqArrayResults;
typedef std::map<std::string, std::string> TDicConfig;
public:
virtual ~DBClient() {};
static DBClient* Create(const std::string&... | [
"cinience@qq.com"
] | cinience@qq.com |
09fcf00db42641044e02bfa72bc4d474e74a65b8 | 54dad81c9a5890ac6d7c3bedf1aff4b8f4d86f3c | /_junkPlugins/BatchRenderer/Source/BatchRenderer/Public/BatchRenderer.h | 576d182fd0f99327162064ed6927d9a5979816e6 | [
"MIT"
] | permissive | DodgeeSoftware/MichaelsPluginTest | 67f20b98e83323e8742ffaf71072d7abd1ee6346 | da52ae782df77e540c17d6602eeae141d8a8b329 | refs/heads/master | 2022-04-14T13:21:41.383306 | 2020-04-16T11:01:35 | 2020-04-16T11:01:35 | 256,189,317 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,433 | h | // Copyright 2018 Dodgee Software, Inc. All Rights Reserved.
#pragma once
// UNREAL ENGINE INCLUDES
#include <CoreMinimal.h>
#include <ModuleManager.h>
class FToolBarBuilder;
class FMenuBuilder;
static FName BatchRendererTabName = FName("BatchRenderer");
/* The FBatchRendererModule Implments the IModuleInterface a... | [
"DodgeeSoftware@gmail.com"
] | DodgeeSoftware@gmail.com |
e1675f3b0117cf0ff19819058be7bbf98512cad1 | 357c68d24389b7708d0d11f920340c9b283c824e | /ida_build/windows/apps/DatCopy/Aspiscsi.h | 616b02d39027b2de5db427e3080062528bcb6c98 | [] | no_license | joeledwards/asl-station-processor | 80361a786ee277999b30d87ac1497c0bdc47d119 | d73f5167baf01e2d7455b180f8757b0988c78d45 | refs/heads/master | 2020-05-31T10:06:58.948122 | 2012-10-29T16:38:27 | 2012-10-29T16:38:27 | 6,052,634 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,868 | h | #ifndef __aspiscsi__
#define __aspiscsi__ 1
#include "win32/wnaspi32.h"
#include "win32/scsidefs.h"
#include "win32/scsitape.h"
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
//extern LPSENDASPI32COMMAND lpfnSendASPI32Command;
typedef struct
{
int adapter;
int lun;
int target;
PVOID pNext... | [
"maint@SLATE1.(none)"
] | maint@SLATE1.(none) |
bca8db447b4aa804589ab79331146ddf67886fbc | 9b4372792eb1b315dd1e7cb98156f5001b762dcf | /mainwindow.h | 71b9046a95f62b72382534012fe8b41211cfe721 | [] | no_license | Morolem/Pyramid-image-processing- | e035680a4a44e8599c17f0a5b82d8e9502234bac | 7d37455377b2eff558c6604fc4ccf38855334eb9 | refs/heads/master | 2020-07-30T08:26:21.336054 | 2019-11-21T06:13:34 | 2019-11-21T06:13:34 | 210,154,853 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,473 | h | #ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
private :
struct Images
{
QString fileName;
QImage imageDat... | [
"www.andrei.97@mail.ru"
] | www.andrei.97@mail.ru |
f2efd47335a8ac7d25003001ec6ddf8faea22055 | ebc39e7af2fd97dc3dafd2ee1e58d594d4f97fb7 | /src/TDOA/Matrix.h | c5e8088fd03042b57c8fdb4f045626d7e2ff027e | [] | no_license | ridolph/pps_TDOA | 57d960ade2ec8a726abe0f22bbaff24852ca5673 | a8ecd37e8ae3a733f735eb57d673453aae8d3612 | refs/heads/master | 2022-11-24T00:01:00.619073 | 2020-07-28T05:37:01 | 2020-07-28T05:37:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,218 | h | #pragma once
#ifndef MATRIX_FILE
#define MATRIX_FILE
/*Matrix.h*/
#include <vector>
using namespace std;
enum DIM
{
ROW = 0,
COL,
BUTT
};
class MAT
{
public:
MAT(){}
MAT(int row,int col)
{resizeMat(row,col);}
MAT(const MAT& inMat)
{mMat = inMat.getMyMat();}
void operator =(vector<vector<double>> value);
... | [
"yfpps@headquarters.com"
] | yfpps@headquarters.com |
c50b5dd15860911c22b0cf149238ae62d55aaed7 | 7ef33fe1a49ea76c1132235b864790d82f595014 | /src/indigo.h | 299d270e1f2df421625fda01c569e3a6342dad67 | [
"BSD-3-Clause"
] | permissive | gear-genomics/tracy | 91ae9891b4fc4a1931279e913f46d04ce26b9c8c | 970bb5b51e25f8f592a3dcd19dd38a4e9bdc0662 | refs/heads/main | 2023-04-14T02:16:09.872971 | 2023-04-12T07:13:28 | 2023-04-12T07:13:28 | 137,339,828 | 91 | 17 | BSD-3-Clause | 2023-04-07T11:38:13 | 2018-06-14T09:54:24 | C++ | UTF-8 | C++ | false | false | 17,127 | h | #ifndef INDIGO_H
#define INDIGO_H
#define BOOST_DISABLE_ASSERTS
#include <boost/multi_array.hpp>
#include "decompose.h"
#include "trim.h"
#include "web.h"
#include "variants.h"
#include "fmindex.h"
using namespace sdsl;
namespace tracy {
struct IndigoConfig {
bool callvariants;
bool annotatevariants;
... | [
"rauschtobi@gmail.com"
] | rauschtobi@gmail.com |
0c82f09385fe57fde373bdd0183464182211815d | a1a1619972fea1e08c5bebb5c1e7ba1678b726a4 | /Verbalizer/src/BTUtil.cpp | ec937c605b8883c995e41712575992627bfc2544 | [] | no_license | itdonline/Verbalizer | 1eb9803f3fea87dab80c3813dca526da72ebd9d4 | 0a55f5ab8b477a04cfffce9a1e991aeee49d7e5c | refs/heads/master | 2021-05-26T12:19:23.834824 | 2011-07-13T18:56:21 | 2011-07-13T18:56:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,093 | cpp | /*
* BTUtil.cpp
*
* Copyright (c) 2011, BREAKFAST LLC
* 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 source code must retain the above copyright
* ... | [
"mattias@breakfastny.com"
] | mattias@breakfastny.com |
204fa10bd80c243dc23b086260353e683438dec1 | 089ed0fb513f66e9b20d400b491258c99a26a429 | /sicsProject/include/sics/forwardchecking_bitset_degreesequenceprune_ac1_ind.h | 1d20b51758e5874e14eb224e2bdabe308ed4a17b | [] | no_license | bi4528/sicsProject | 95885735ce502a764d2f2854792b2cbf1a4539df | 58cc27d4a1b59e21264bd779e888b54f61e17f75 | refs/heads/master | 2023-08-24T21:35:00.638424 | 2021-10-05T20:55:26 | 2021-10-05T20:55:26 | 391,051,372 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,622 | h | #ifndef SICS_FORWARDCHECKING_BITSET_DEGREESEQUENCEPRUNE_AC1_IND_H_
#define SICS_FORWARDCHECKING_BITSET_DEGREESEQUENCEPRUNE_AC1_IND_H_
#include <iterator>
#include <utility>
#include <numeric>
#include <vector>
#include <stack>
#include <boost/dynamic_bitset.hpp>
#include "adjacency_degreesortedlistmat.h"
#include "g... | [
"36712965+bi4528@users.noreply.github.com"
] | 36712965+bi4528@users.noreply.github.com |
ce01aca281cdea0a1218278e73dca565d034527c | 8f11b828a75180161963f082a772e410ad1d95c6 | /packages/vehicle/include/device/SBSonar.h | 4ec0d08eb41af8adf5f80dee086243f27aa1f9d5 | [] | no_license | venkatarajasekhar/tortuga | c0d61703d90a6f4e84d57f6750c01786ad21d214 | f6336fb4d58b11ddfda62ce114097703340e9abd | refs/heads/master | 2020-12-25T23:57:25.036347 | 2017-02-17T05:01:47 | 2017-02-17T05:01:47 | 43,284,285 | 0 | 0 | null | 2017-02-17T05:01:48 | 2015-09-28T06:39:21 | C++ | UTF-8 | C++ | false | false | 2,430 | h | /*
* Copyright (C) 2008 Robotics at Maryland
* Copyright (C) 2008 Joseph Lisee <jlisee@umd.edu>
* All rights reserved.
*
* Author: Joseph Lisee <jlisee@umd.edu>
* File: packages/vision/include/device/SBSonar.h
*/
#ifndef RAM_VEHICLE_DEVICE_SBPOWER_07_19_2008
#define RAM_VEHICLE_DEVICE_SBPOWER_07_19_2008
// ST... | [
"dhakimdahakim@gmail.com"
] | dhakimdahakim@gmail.com |
012259e0f8bb9e690c1112add7a1fa206d0224b7 | be4737ec5e569506a3beea5cdfedafdd778e32e1 | /Array/frequenciesranges.cpp | 893b072b38496b65c3be6efbeba78d0cb408a8b5 | [] | no_license | Samykakkar/DSA-practice | 8fd49c690f9c6af56437cb09475e7796538df77b | d10938f34e9467688f178b6570ccc740d3cc4dff | refs/heads/master | 2023-07-24T22:10:26.953125 | 2021-09-06T09:26:00 | 2021-09-06T09:26:00 | 392,998,137 | 0 | 1 | null | 2021-08-13T10:46:25 | 2021-08-05T10:21:28 | C++ | UTF-8 | C++ | false | false | 128 | cpp | #include <iostream>
using namespace std;
void frequencyCount(vector<int> &arr, int N, int P)
int main()
{
return 0;
} | [
"sam8377984375@gmail.com"
] | sam8377984375@gmail.com |
ebeb22cb43dda3a7dad62506e38f64a734e6dc5a | 09cf8c90c4bbcc27a7a7c64fa7907d759f4bf2e9 | /week-04/day-02/01-PostIt/post_it.cpp | 063537f63cb8442d49f64f99a5d5dc68cd650361 | [] | no_license | green-fox-academy/FanniTakax | b52a4d03cb6b884779c8d3585be7086e33b0c5ae | 541f08ea3a13c5d2ce79acbe64b73b3c35019973 | refs/heads/master | 2020-04-02T00:50:06.685417 | 2019-01-28T10:52:11 | 2019-01-28T10:52:11 | 153,823,928 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 432 | cpp | //
// Created by malajabi on 11/13/2018.
//
#include "post_it.h"
PostIt::PostIt(std::string backgroundColor, std::string text, std::string textColor)
{
_backgroundColor = backgroundColor;
_text = text;
_textColor = textColor;
}
std::string PostIt::getBackgroundColor()
{
return _backgroundColor;
}
st... | [
"tkcsfni@gmail.com"
] | tkcsfni@gmail.com |
d956a9f4e41008f147950f9e83c56f15d303e9f6 | b3c64bd7b1997afeaa0b847d80e9d8bbbbe4ed7e | /scripts/kalimdor/maraudon/boss_noxxion.cpp | 29ae76b25f48545c406e5c9a99d2d38dd2fcf322 | [] | no_license | Corsol/ScriptDev3 | 3d7f34d6c3689c12d53165b9bfaf4ee8d969e705 | 7700e5ec4f9f79aa4e63e9e6e74c60d84d428602 | refs/heads/master | 2021-01-15T20:33:37.635689 | 2015-07-31T21:34:53 | 2015-07-31T21:34:53 | 40,475,601 | 1 | 0 | null | 2015-08-10T09:55:40 | 2015-08-10T09:55:40 | null | UTF-8 | C++ | false | false | 4,845 | cpp | /**
* ScriptDev3 is an extension for mangos providing enhanced features for
* area triggers, creatures, game objects, instances, items, and spells beyond
* the default database scripting in mangos.
*
* Copyright (C) 2006-2013 ScriptDev2 <http://www.scriptdev2.com/>
* Copyright (C) 2014-2015 MaNGOS <https://get... | [
"Antz@getMaNGOS.co.uk"
] | Antz@getMaNGOS.co.uk |
ea558f947cd432263809d1e60bf06dabc49efc43 | 3c069491ee0fd844f65abff525902cb9f8b95544 | /tests/test_twounitschanger.cpp | ee459a63893c9845200199c658ac635cd24484eb | [] | no_license | 3dcl/osghimmel | 5a8f20dc8be8d7e609703baf9cce2ebfcc6cabfc | 4d51e954d1f94a7ea7599ce12fdca5f44d0f2bf3 | refs/heads/master | 2021-01-25T07:11:47.935307 | 2015-01-16T10:23:37 | 2015-01-16T10:23:37 | 23,115,750 | 1 | 0 | null | 2015-01-16T10:23:37 | 2014-08-19T15:40:11 | C++ | ISO-8859-3 | C++ | false | false | 3,038 | cpp |
// Copyright (c) 2011-2012, Daniel Müller <dm@g4t3.de>
// Computer Graphics Systems Group at the Hasso-Plattner-Institute, Germany
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
// ... | [
"jan.klimke@hpi.uni-potsdam.de"
] | jan.klimke@hpi.uni-potsdam.de |
c7449c09fb51488295a3380070ac4abd71d82329 | 68e0727b9692f7491e9a1daa9fc0f550a0ea6637 | /inc/core/Application.hpp | 551eab888acf29a2c7297a8ef811cf31e68234ad | [] | no_license | ConnorHeidema/EmmoriaV2 | b3ea1fb4266362137677d96d00b2996e5d074e84 | 982d941e8713e0106a60ac9f7e4adb0e10477268 | refs/heads/master | 2023-02-16T20:48:02.393694 | 2021-01-15T02:54:22 | 2021-01-15T02:54:22 | 282,720,526 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 389 | hpp | #ifndef __APPLICATION__
#define __APPLICATION__
#include <entt/entt.hpp>
#include <SFML/Graphics/RenderWindow.hpp>
class Application
{
public:
Application();
bool Start();
private:
void Initialize_();
void RunLoop_();
void CheckForEvents_();
bool UpdateWhenNotFocused_();
entt::registry m_reg;
sf::RenderWind... | [
"heidema.connor@gmail.com"
] | heidema.connor@gmail.com |
83db6bf04ba6f360170e9b7ee837acc4fc98c5b5 | 2809a20e2b8a6cbe39abf94fe0d74d05567c43f7 | /include/MatchVirtualCallee.h | a713b479e9e370eee39feb4466144974d6fd4301 | [
"MIT"
] | permissive | shakhand/CodingAssistant-Clang | 00daab03121874d503b388c15d20dd5fcdc4c0ae | 89346ddf7100feb6a09d02b79143deb7b824d6c3 | refs/heads/master | 2020-06-21T01:20:01.574974 | 2015-01-04T04:40:27 | 2015-01-04T04:40:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 418 | h | #ifndef _MATCH_VIRTUAL_CALLEE_H
#define _MATCH_VIRTUAL_CALLEE_H
#include "ASTUtility.h"
namespace EffectiveCPP {
using namespace clang::ast_matchers;
extern StatementMatcher ctorCallVtlMatcherEC;
extern StatementMatcher dtorCallVtlMatcherEC;
class CtorCallVtlPrinter : public MatchFinder::MatchCallbac... | [
"ji.taoran@hotmail.com"
] | ji.taoran@hotmail.com |
c44a779746bf104aaa0515d94a5a9bb07e1c9c40 | 92c16d7ade01a5622669f47d10c9fb872d22adbb | /CT/Project1/pBall.h | 12270f67af6728a395f5270ab836a77c702a00b1 | [] | no_license | sonlechiht/DA2-LTHDT-TH | e1937cdede3bdc7064fbbe3f36b588474432dc39 | d57a699e1cbf123f6eebebd82cfc8a773bcc552d | refs/heads/master | 2022-12-11T04:55:55.537062 | 2019-12-13T14:36:44 | 2019-12-13T14:36:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 632 | h | #pragma once
#include"iostream"
#include"time.h"
#include"conio.h"
using namespace std;
enum Dir { STOP = 0, LEFT = 1, RIGHT = 2, UPLEFT = 3, UPRIGHT = 4, DOWNLEFT = 5, DOWNRIGHT = 6 };
class pBall
{
private:
int x, y;//TOA DO HIEN TAI CUA QUA BONG'
int defaultX, defaultY;//TOA DO. MAC. DINH. CUA QUA BONG'
Dir direc... | [
"55779483+lechisonht@users.noreply.github.com"
] | 55779483+lechisonht@users.noreply.github.com |
19d29bd59b823b1c4c54d78b928c2a6598f2f9f3 | 717badf182457b194274cd58bc7d9f647ebe02ec | /FariaLib/SkyWorld.cpp | c7fe18a504e730a2256db1e72e49f8cbcfcc2044 | [
"MIT"
] | permissive | dennisjenkins75/FariaRomEditor | e319545563a2f7b071192141fd547b62124dc5be | 5050ce9a498ecb4ad5f7ffc76503cce258961cba | refs/heads/master | 2020-12-24T14:44:44.747900 | 2013-10-23T04:22:12 | 2013-10-23T04:22:12 | 13,792,651 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,418 | cpp | /* Skyworld.cpp */
static const int SKY_WORLD_WIDTH = 64;
static const int SKY_WORLD_HEIGHT = 64;
void FL_DecompressSkyworld
(
const unsigned char *rom, // [IN] Pointer to 256K Faria ROM image.
unsigned char *buffer // [OUT] Pointer to 4K (64x64 @1byte/tile).
)
{
const unsigned char *pSrc = rom + 0xf8e... | [
"dennis.jenkins.75@gmail.com"
] | dennis.jenkins.75@gmail.com |
f11ae16a0c1dda52d33051a375b3b205a345386e | b4753c423c149c3448ed84b111b068de2bbfe9b5 | /src/tools/jetVetoMaps.cpp | b16ff7f557e1de49ec56621c10f94f8f23d35826 | [] | no_license | dmeuser/top_analysis | 8773667dfcf0c55ee849bec5a80f8a497f970220 | 6084cea81d2c662b93043d6bcf920fca24bf9a3d | refs/heads/master | 2023-04-06T00:26:42.129989 | 2023-03-16T12:22:53 | 2023-03-16T12:22:53 | 179,239,380 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,445 | cpp | #include "jetVetoMaps.hpp"
#include "Config.hpp"
#include <iostream>
JetVetoMaps::JetVetoMaps(const std::string& map_fileName, const std::string& map_histName, const std::string& map_histName_MC16, const Systematic::Systematic& systematic, const int year_int, const bool is2016) :
systematic_(systematic),
vetoMap... | [
"danilo.meuser@rwth-aachen.de"
] | danilo.meuser@rwth-aachen.de |
3ec031ddc6075813ed44a34ab705021d3dd46e9c | 622371322a152750ae23eb8ba93454e2e5f28208 | /src/rule_bounding.cpp | e4f7fbeb2f4ef6b6bf512bb7e537f8dde4077d71 | [
"MIT"
] | permissive | foopod/gba-boids | 1c5255b530cfc9824ee21afb13432ed05c3f3a97 | ad8877f7630f8a2667955d8cdc8a53afba9adb63 | refs/heads/main | 2023-04-29T06:30:22.414447 | 2021-05-25T05:05:13 | 2021-05-25T05:05:13 | 370,298,840 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 758 | cpp | #include "rule_bounding.h"
#include "boid.h"
#include "bn_log.h"
#include "bn_math.h"
void BoundingRule::execute(bn::vector<Boid, 32>& boids_ptr){
bn::vector<Boid, 32>* boids = &boids_ptr;
// for each boid
for(int i = 0; i < boids->size(); i++){
Boid boid = boids->at(i);
if(boid.pos().x()... | [
"jonathonshields@gmail.com"
] | jonathonshields@gmail.com |
1cc0f0ef3baf3e6311e893f3d7b20d3837a5072a | 9602e36990888087b0d3405218e5b0a850c00315 | /project/src/matroids/src/transversal_matroid.h | 6156f221af6b6fd3900b4fd3271c29b43f30b536 | [
"MIT"
] | permissive | fafianie/multiway_cut | e6360f3e48f4ac6b666cae0b135e638fe76e06d6 | 52355c9a754287545c060b3ae97b4e11aacd0bfb | refs/heads/master | 2021-06-02T13:20:55.710095 | 2020-08-15T15:40:14 | 2020-08-15T15:40:14 | 133,058,079 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 188 | h | #pragma once
#include "matroid.h"
#include "graph.h"
#include "galois.h"
class TransversalMatroid {
public:
static Matroid generate(Graph&, Galois*, std::vector<int>&);
}; | [
"stefan.fafianie@asml.com"
] | stefan.fafianie@asml.com |
f5c753c52c8deb9ddd21d375fe46cafa3a3d8ef0 | 91b964984762870246a2a71cb32187eb9e85d74e | /SRC/OFFI SRC!/boost_1_34_1/boost_1_34_1/boost/thread/barrier.hpp | fad457dbc98bdbbf2bd3d94e25b2ddac4b30e238 | [
"BSL-1.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | willrebuild/flyffsf | e5911fb412221e00a20a6867fd00c55afca593c7 | d38cc11790480d617b38bb5fc50729d676aef80d | refs/heads/master | 2021-01-19T20:27:35.200154 | 2011-02-10T12:34:43 | 2011-02-10T12:34:43 | 32,710,780 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,008 | hpp | // Copyright (C) 2002-2003
// David Moore, William E. Kempf
//
// 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)
#ifndef BOOST_BARRIER_JDM030602_HPP
#define BOOST_BARRIER_JDM030602_HPP
#include <boost/th... | [
"66430417@qq.com@e2c90bd7-ee55-cca0-76d2-bbf4e3699278"
] | 66430417@qq.com@e2c90bd7-ee55-cca0-76d2-bbf4e3699278 |
6c6b249918e5381b1f0940928ca5fef98b5bfec9 | 706b18780794944774b4a29244c1867610a896a0 | /src/protocol/KeyValueResponseParser.h | 01b8ed20ae3448610e6ee46c848a59bce98ed594 | [
"Apache-2.0",
"BSD-3-Clause",
"curl",
"Zlib"
] | permissive | dlopes7/openkit-native | cb5daf7c2ad858f195d02884e840445b96a2369d | 669871b0f48d85534c3ecfdfca2c9fb6de5811f9 | refs/heads/master | 2020-09-17T06:10:52.992923 | 2020-03-23T00:50:15 | 2020-03-23T00:50:15 | 224,014,912 | 0 | 0 | NOASSERTION | 2020-03-23T00:50:17 | 2019-11-25T18:27:39 | null | UTF-8 | C++ | false | false | 2,512 | h | /**
* Copyright 2018-2019 Dynatrace 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 ag... | [
"openkit@dynatrace.com"
] | openkit@dynatrace.com |
7cbe7e327f5510b68a195291affab399d1cc37b4 | cfeac52f970e8901871bd02d9acb7de66b9fb6b4 | /generated/src/aws-cpp-sdk-iot-jobs-data/source/model/DescribeJobExecutionRequest.cpp | 6fd54339dbb6deee11fdc9f02856355f62253f22 | [
"Apache-2.0",
"MIT",
"JSON"
] | permissive | aws/aws-sdk-cpp | aff116ddf9ca2b41e45c47dba1c2b7754935c585 | 9a7606a6c98e13c759032c2e920c7c64a6a35264 | refs/heads/main | 2023-08-25T11:16:55.982089 | 2023-08-24T18:14:53 | 2023-08-24T18:14:53 | 35,440,404 | 1,681 | 1,133 | Apache-2.0 | 2023-09-12T15:59:33 | 2015-05-11T17:57:32 | null | UTF-8 | C++ | false | false | 1,275 | cpp | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/iot-jobs-data/model/DescribeJobExecutionRequest.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <aws/core/http/URI.h>
#include <aws/core/utils/memory/stl/AWSStringStream.h>
... | [
"sdavtaker@users.noreply.github.com"
] | sdavtaker@users.noreply.github.com |
ba7a546518fa37e3220e147d463b65d2f694512b | 87fab40520223f50e865b5b0fbdde5a635773978 | /Bulb/bulb_settings.cpp | 10c0804c89146b373397100c1db126ed3d404506 | [] | no_license | JBarrada/Bulb | 765ea906e20c0ba9ae5726ead330c2dca242a170 | 5acc66a2e11987280647e0e5cd55e8ffc9874aef | refs/heads/master | 2022-12-19T06:46:26.082846 | 2020-10-01T20:55:42 | 2020-10-01T20:55:42 | 98,884,608 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 29,146 | cpp | #include "bulb_settings.h"
BulbSave::BulbSave() {
file_name = "";
image = BMP(256, 256);
}
bool BulbSave::load(string save_file_name) {
file_name = save_file_name;
image.load(file_name);
ifstream save_file(file_name);
char verify_string[10];
memset(verify_string, 0, 10);
save_file.seekg(image.bmp_file_size, ... | [
"xeerogravity@aim.com"
] | xeerogravity@aim.com |
032645e0b36da5b739a1613c085469f2242394fc | 3e14bfc4a7c2c29214928f7a805f62ba487c36ff | /Common/StateMapDlg.cpp | b2e34a162a5d3202553ce6387b0f8df931e77c17 | [] | no_license | chinarustin/RadarSim | bef6464c220a38cc7c512d26b4398aba30872033 | 1b33f3bcf20c9da36cb8eb382a39afefbfe1930d | refs/heads/master | 2020-12-26T01:48:39.860994 | 2014-05-14T18:17:17 | 2014-05-14T18:17:17 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 10,422 | cpp | // StateMapDlg.cpp : 实现文件
//
#include "stdafx.h"
#include "StateMapDlg.h"
// CStateMapDlg 对话框
IMPLEMENT_DYNAMIC(CStateMapDlg, CDialog)
CStateMapDlg::CStateMapDlg(LPCWSTR title, StateMap &stateMap, CCommonDlg *dlg, CWnd* pParent /*=NULL*/)
: CDialog(CStateMapDlg::IDD, pParent)
, m_Title(title)
, m_StateMap(... | [
"zanmato1984@gmail.com"
] | zanmato1984@gmail.com |
1808b8ac2247f7034049b680a70d21e76664078d | aefdfc265ce14f80e2def183ed54be1866cf609b | /Snake/Classes/Native/UnityEngine_ArrayTypes.h | 7e317fd9a6d598bb82ce856a682c986b5546b5e3 | [] | no_license | labdogg1003/Snake | 5865b464a9e10f13cb2603a2c1356280f9f38afd | d91017ccbf433761898de90e3763ffaf50020f5f | refs/heads/master | 2021-01-11T04:29:12.852507 | 2016-10-24T16:01:33 | 2016-10-24T16:01:33 | 71,182,749 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 33,126 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
// UnityEngine.Object
struct Object_t3071478659;
// UnityEngine.SocialPlatforms.IAchievementDescription
struct IAchievementDescription_t655461400;
// UnityEngine.SocialPlatforms.IAchievement
struct IAchi... | [
"labguitar1003@gmail.com"
] | labguitar1003@gmail.com |
7a82c016a27a3b500892ed0eb11132907695dfdd | 8492f5c968ec3bd60c7e184ea1b9ef0a108c1aa2 | /2D_Lines/line_structs.cpp | 87f06d9c4342c9175c825d23594454e6bea524ff | [] | no_license | MrMounir19/Comp_Graph_Engine | 97ebcc5bcbe06ec2f54d57af223cbea6ab165222 | 2bbdcbcb941f28c05b8f8f7e18b153eb1f13f293 | refs/heads/master | 2022-09-25T22:17:51.964689 | 2020-05-31T15:14:39 | 2020-05-31T15:14:39 | 242,787,035 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,131 | cpp |
#ifndef ENGINE_LINESTRUCTS
#define ENGINE_LINESTRUCTS
#include <vector>
#include <limits>
struct Color {
double red;
double green;
double blue;
Color (double R, double G, double B):red(R), green(G), blue(B) {}
Color (std::vector<double> color) {
red = color[0];
green = color[1];
... | [
"mounirvillaverde@gmail.com"
] | mounirvillaverde@gmail.com |
52b939af5e1daad911cd112ddf63744591577db3 | c173d7387b44e86d74e83472f428479c56bce58f | /hardware/MPU6050.cpp | 8a715987117d1220e0af64ba768f57706a7afba4 | [
"MIT"
] | permissive | rise0chen/lib-mcu-stm32f1 | e604ba0470fe8aea17a1ae303c4531e18be2cfec | 203ea6564d1e8821e6e2ab991056bad9fa9da2e1 | refs/heads/master | 2021-05-05T15:52:13.726459 | 2019-09-30T08:39:34 | 2019-09-30T08:39:34 | 117,324,381 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,816 | cpp | /*************************************************
Copyright (C), 2018-2028, Crise Tech. Co., Ltd.
File name: Mpu6050.cpp
Author: rise0chen
Version: 1.0
Date: 2018.4.26
Description: Mpu6050陀螺仪芯片
Usage:
#include "Mpu6050.h"
Mpu6050 mpu6050(&i2c2, 0x68);
mpu6050.init();
mpu6050.getGYRO();
... | [
"1034018425@qq.com"
] | 1034018425@qq.com |
11708a8d7a7954c4e25be57d83018a87c922d9c7 | 129b17409003e825e01ee3b74b6b2b462d1cbf55 | /HrCommon/HrResource/HrAssetLoadManager.cpp | 45e7003d7fa9bb7191c527f7a5b7947ca1ea4411 | [] | no_license | nincool/Cocos2d | f868203601a89cd89c8835aaf6d5f190982885eb | 555dea1a4b6e2f07ec825cbe26ae8e1a8b7645ac | refs/heads/master | 2016-09-05T17:46:26.555853 | 2015-07-25T07:37:10 | 2015-07-25T07:37:10 | 32,519,367 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 938 | cpp | #include "HrAssetLoadManager.h"
#include "IAssetLoad.h"
using namespace HrCCBase;
HrCCBase::CHrAssetLoadManager::CHrAssetLoadManager()
{
m_nCurLoadAssetNum = 0;
m_nTotalAssetNum = 0;
m_nCurLoadAssetIndex = 0;
m_pAssetLoadEvent = nullptr;
}
HrCCBase::CHrAssetLoadManager::~CHrAssetLoadManager()
{
}
void CHrAsset... | [
"howieren@163.com"
] | howieren@163.com |
654dd0141a2b4390498ca2541770a2bb768208f4 | e8ebf2696611e5c4bd58d6d81ac0bbd54864ff6d | /QGoogleMap.cpp | ede0ff86eec76a953c1a52b2acde2922ead92fe6 | [
"MIT"
] | permissive | fedormex/QGoogleMap | 7ed23dad11564e97de6241f2e135e40b11242b6e | f6b10a5191888018d99ba78ca43271a38cad8e25 | refs/heads/master | 2020-03-17T14:42:55.361775 | 2018-05-31T19:41:32 | 2018-05-31T19:41:32 | 133,683,785 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 29,962 | cpp | #include <sys/stat.h>
#include <sys/types.h>
#include <utime.h>
#include <signal.h>
#include "QGoogleMap.h"
const int MEM_CACHE_SIZE = 200; // In chunks
const int DISK_CACHE_SIZE = 10000; // In chunks
const int HISTORY_SIZE = 1000; // maximum history (track) size
const int ZOOM_MAX = ... | [
"Fedor.Puchkov@navigine.com"
] | Fedor.Puchkov@navigine.com |
ed99803c497a07484c898e8fa53276d323cc5756 | 0ff5c3178e87a28a82165bfa908d9319cf7a2323 | /04. Arrays/max_heap.cpp | a85031c3441ebbb9b10d6a53d284769bd1eb1c2d | [
"MIT"
] | permissive | SR-Sunny-Raj/Hacktoberfest2021-DSA | 40bf8385ed976fd81d27340514579b283c339c1f | 116526c093ed1ac7907483d001859df63c902cb3 | refs/heads/master | 2023-01-31T07:46:26.016367 | 2023-01-26T12:45:32 | 2023-01-26T12:45:32 | 262,236,251 | 261 | 963 | MIT | 2023-03-25T14:22:10 | 2020-05-08T05:36:07 | C++ | UTF-8 | C++ | false | false | 4,430 | cpp | // Max Heap implementation in C++
#include <iostream>
#include <vector>
#include <algorithm>
#include <stdexcept>
using namespace std;
// Data structure to store a max-heap node
struct PriorityQueue
{
private:
// vector to store heap elements
vector<int> A;
// return parent of `A[i]`
// don't call ... | [
"sanvisumanpathak@gmail.com"
] | sanvisumanpathak@gmail.com |
c25b4575dbc9d144e1a196108f739e28015d7973 | 4b7d5c2c86c5ab35e39c43262b740392c5e519df | /Top_Coder/BinaryCode.cpp | 0860464b33b969ee756ec51cbc509c4d6aeaf327 | [] | no_license | gjones1911/cs302 | 732b4b0bd53116038e56b32d80851c906c54af1e | 8a0a88d4032e214edaaed71f0a0b3bb106959845 | refs/heads/master | 2020-05-14T20:17:14.392321 | 2019-04-17T17:56:55 | 2019-04-17T17:56:55 | 181,942,009 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,445 | cpp | // BEGIN CUT HERE
// PROBLEM STATEMENT
// Let's say you have a binary string such as the following:
011100011
One way to encrypt this string is to add to each digit the sum of its adjacent digits. For example, the above string would become:
123210122
In particular, if P is the original string, and Q is the encrypt... | [
"gjones2@hydra25.eecs.utk.edu"
] | gjones2@hydra25.eecs.utk.edu |
4752c2a115821eac4d84d5904381b60e69de44b9 | e86c8116ab0542a6b7f6a551344a86139e39f9de | /Sample/SimpleVoxelization/Source/Public/SimpleVoxelizationTriMesh.h | 28b1ddb601aa32eeaefb359c1a92290b7b812b0f | [] | no_license | jazzboysc/RTGI | fb1b9eed9272ce48828e9a294529d70be3f61532 | 80290d4e1892948d81427569fb862267407e3c5a | refs/heads/master | 2020-04-14T05:23:38.219651 | 2015-07-17T07:12:48 | 2015-07-17T07:12:48 | 20,085,664 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,256 | h | #ifndef RTGI_SimpleVoxelizationTriMesh_H
#define RTGI_SimpleVoxelizationTriMesh_H
#include "TriangleMesh.h"
#include "Texture3D.h"
#include "AABB.h"
#include "ShaderUniform.h"
namespace RTGI
{
//----------------------------------------------------------------------------
// Author: Che Sun
// Date: 10/08/2014
//----... | [
"S515380c"
] | S515380c |
ed2234d1791478833a8a4546f2ad2c19e072f094 | b677894966f2ae2d0585a31f163a362e41a3eae0 | /ns3/ns-3.26/src/flow-monitor/helper/flow-monitor-helper.cc | 0f2334fa353893d7c398c3ed79bbe3f5dadb4d94 | [
"LicenseRef-scancode-free-unknown",
"GPL-2.0-only",
"Apache-2.0"
] | permissive | cyliustack/clusim | 667a9eef2e1ea8dad1511fd405f3191d150a04a8 | cbedcf671ba19fded26e4776c0e068f81f068dfd | refs/heads/master | 2022-10-06T20:14:43.052930 | 2022-10-01T19:42:19 | 2022-10-01T19:42:19 | 99,692,344 | 7 | 3 | Apache-2.0 | 2018-07-04T10:09:24 | 2017-08-08T12:51:33 | Python | UTF-8 | C++ | false | false | 4,703 | cc | // -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*-
//
// Copyright (c) 2009 INESC Porto
//
// 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 Free Software Foundation;
//
// This program is distribu... | [
"you@example.com"
] | you@example.com |
d606ccdacc5f050950b5634878c6bf926902887f | 77cba4e5adbd3bbb4c57cf2efb7dfcb0396e7f02 | /Computer Graphics/computer graphics practical/graphics practicals/DDA.CPP | 9c4bee4aa5c8d30dde9bdf8061dfc7c95b9ea7ee | [] | no_license | simran-pandey/Computer-Science-Resources | c8f9c77f8dd5bcaa57a3c2e5e5e07ce7102d9976 | d4ce7d021984a55f750fe1f93b0b9acbc0f22a8e | refs/heads/master | 2020-03-08T15:44:48.753555 | 2019-03-15T11:28:01 | 2019-03-15T11:28:01 | 128,220,222 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,517 | cpp | #include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
#include<iostream.h>
#include<math.h>
void main()
{
clrscr();
int x1,x2,y1,y2;
float dy,dx;
/* request auto detection */
int gdriver = DETECT, gmode, errorcode;
int xmax, ymax;
/* initialize graphics and local variabl... | [
"pandeysimran97@gmail.com"
] | pandeysimran97@gmail.com |
ceb26cc17abc9c8c768d771f8944caaeba94eef7 | 7725332c392408ee1d49afe44ffcb1401dbb655f | /abc/abc077B.cpp | 98779f94cad77ea96efa6e7f523d57d0022765b3 | [] | no_license | moxlev/AtCoder | 8a95b58a99a773df4cb8fd0dcde6cc12aa1c5bd7 | 94375e589d2b74adb7190ad84c16fd541b5f495f | refs/heads/master | 2021-07-13T19:34:56.087640 | 2019-03-12T13:13:06 | 2019-03-12T13:13:06 | 152,913,053 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 383 | cpp | #include <iostream>
#include <string>
#include <vector>
#include <map>
#include <algorithm>
#include <numeric>
#include <functional>
#include <cmath>
#include <stdio.h>
int main(){
int n;
std::cin>>n;
int i = 1;
while(true){
if(i * i > n){
std::cout<<(i - 1) * (i - 1)<<std::endl;
... | [
"moxglev@gmail.com"
] | moxglev@gmail.com |
843a7e0fa8c10bf6b8ff55bb8a1087d309e5ff71 | 5b41e312db8aeb5532ba59498c93e2ec1dccd4ff | /DM/DM_LF/DM_LF_Frame/CDM_LFSampleManager.h | 3cbfe738b15337025d636ad2b49eed21b19ee78e | [] | no_license | frankilfrancis/KPO_HMI_vs17 | 10d96c6cb4aebffb83254e6ca38fe6d1033eba79 | de49aa55eccd8a7abc165f6057088a28426a1ceb | refs/heads/master | 2020-04-15T16:40:14.366351 | 2019-11-14T15:33:25 | 2019-11-14T15:33:25 | 164,845,188 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 786 | h | // Copyright (C) 1991 - 1999 Rational Software Corporation
#if defined (_MSC_VER) && (_MSC_VER >= 1000)
#pragma once
#endif
#ifndef _INC_CDM_LFSAMPLEMANAGER_4164FDA9006D_INCLUDED
#define _INC_CDM_LFSAMPLEMANAGER_4164FDA9006D_INCLUDED
#include "CDM_SampleManager.h"
class CDM_LFProductManagementInterface_Impl;
class C... | [
"52784069+FrankilPacha@users.noreply.github.com"
] | 52784069+FrankilPacha@users.noreply.github.com |
7154e500caae223dc380389646aec08cf3b97e6d | 16a95d35f44a9ee90aa3d2faaa3808931b7c008e | /Ke thua/sucsac_source.cpp | b0904322f69962de366e2e9f49f87e4ee56df5be | [] | no_license | hoangtuyenblogger/Phuong-Phap-Lap-Trinh-Huong-Doi-Tuong | 690e1ff65f98e83bd032bd355bd060614042daf2 | 53a742c122a22b0838ecb3da04749a0c0a324ab1 | refs/heads/master | 2022-12-18T13:04:14.578932 | 2020-09-17T09:31:51 | 2020-09-17T09:31:51 | 233,080,281 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 420 | cpp | #include <cstdlib>
#include <ctime>
#include<iostream>
using namespace std;
#include"sucsac_map.h"
game::game()
{
ten= "";
diem = 0;
}
void game::play()
{
int random =1 + rand() % 6; // suc sac co 6 mat, random 1 gia tri
diem +=random; // cong gia tri random vao diem
}
/* ---------- nguoi -----*/
gamer::gamer... | [
"34962881+hoangtuyenblogger@users.noreply.github.com"
] | 34962881+hoangtuyenblogger@users.noreply.github.com |
bcb9e97f6c35ee248a4a3b90e5452d880523e15b | d34da294ad925d881cfaeddaf6c25ec4a119f746 | /design/firmware/turbidoconc.ino | 5fb1aa7457858ac39ce6f52f505cc11c0c9d4b22 | [] | no_license | ingolia-lab/turbidostat | befb1192be53f5400203a0e8173dfcd5868c165e | f455666de056509f74e5096bf62489194f39e7c9 | refs/heads/master | 2021-07-04T22:03:02.942965 | 2020-08-04T03:10:08 | 2020-08-04T03:10:08 | 140,904,066 | 7 | 5 | null | 2020-08-04T03:10:09 | 2018-07-14T00:37:15 | C++ | UTF-8 | C++ | false | false | 5,028 | ino | #include "turbidoconc.h"
TurbidoConcBase::TurbidoConcBase(Supervisor &s) :
TurbidoMixBase(s),
_currentPpm1(1000000),
_fillSeconds(1000)
{
}
int TurbidoConcBase::begin(void)
{
int err = TurbidoMixBase::begin();
if (!err) {
_lastTotalMsec1 = pump1().totalOnMsec();
_lastTotalMsec2 = pump2().tota... | [
"nick@ingolia.org"
] | nick@ingolia.org |
e899c930dee44b76feffe23c8f90b6391117c2af | 42f0c87e7c7369c61638cc06c62c20f8a6b80215 | /tmp/Distinct_Subsequences.cpp | bfc53ae87e30de5dfa27eed6a1a87a9452b11376 | [] | no_license | utwodownson/leetcode_old | d07d63b065fadb52b1b6a0e1c5aba3482b9d9771 | fb6eebe29d17360b0eef9fa25cf8d4853e345ef0 | refs/heads/master | 2021-05-01T00:37:47.970764 | 2014-02-19T05:27:40 | 2014-02-19T05:27:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 851 | cpp | /* Given a string S and a string T, count the number of distinct subsequences of T in S.
* A subsequence of a string is a new string which is formed from the original string by deleting some
* (can be none) of the characters without disturbing the relative positions of the remaining characters.
* (ie, "ACE" is a s... | [
"utwodownson@gmail.com"
] | utwodownson@gmail.com |
c87b019c04c7e84454f7c39d7e34f1506d21b957 | 3d88116aa52d2ec4d3a581e2918503ead4d21b02 | /Src/KLuaQuestInfo.cpp | c3578c3e046a390e026466084a19eadde6f30c9d | [] | no_license | zhengguo85938406/GameWorld | 59f63bfd871d05a503f03d315a618a45f400cac9 | 8af713954c96ba3b0b5f7f96f5cdb5b313783f30 | refs/heads/master | 2021-01-25T08:37:47.103500 | 2015-07-31T09:56:03 | 2015-07-31T09:56:03 | 39,997,701 | 4 | 1 | null | null | null | null | GB18030 | C++ | false | false | 1,365 | cpp | #include "stdafx.h"
#include "KQuestInfoList.h"
#include "KSO3World.h"
DEFINE_LUA_CLASS_BEGIN(KQuestInfo)
REGISTER_LUA_STRING_READONLY(KQuestInfo, QuestName) // 任务名称
REGISTER_LUA_BOOL(KQuestInfo, Repeat) //是否可重复
REGISTER_LUA_BOOL(KQuestInfo, Accept) //是否先接才能交
REGISTER_LUA_DWORD(KQuestInfo, CoolDow... | [
"85938406@qq.com"
] | 85938406@qq.com |
633ca0be2a10b44d112142a3d54cd4cb39fb3614 | 74ea903c078ff7f70ea04111937c06046dae990a | /TestCases.cpp | 7778d8ce7fc898d9b7d3d853f4a23b5fcd6493a2 | [] | no_license | jimmybeer/MapGenerator | 65eaac72eecce451bcdc04e468de59a42264b459 | 5d4fabfd1fb18edf95f8371b5224ed767c4523aa | refs/heads/master | 2020-05-19T10:22:33.368384 | 2015-05-10T21:38:59 | 2015-05-10T21:38:59 | 35,388,306 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,895 | cpp | #include "TestCase.h"
#include "IPoint.h"
#include "IRect.h"
#include "Helper.h"
#include <iostream>
void TestCase::Run()
{
std::cout << "Running Point Test Cases:\n";
TestCase::RunPointTests();
std::cout << "Running Rectangle Test Cases:\n";
TestCase::RunRectTests();
}
void TestCa... | [
"james-young@live.com"
] | james-young@live.com |
5b5203dabbebdefdc384e49f21421f98dce7e878 | 87cb1d34fce13656de340c6e61a1ed85748b6f81 | /ch4/example/213.cpp | 524cb7271d21429b50b01f1ea2f4570f6da06aa5 | [] | no_license | Visualsf/aoapc | 9ccfd5c82990ecdee9505e8ccd32c4689bd3fefb | fe7e58cfaad29e8b18636ac4f18b9418f72dca18 | refs/heads/master | 2020-03-10T20:52:44.145281 | 2018-11-23T10:25:45 | 2018-11-23T10:25:45 | 129,579,633 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,650 | cpp | /**
* 1.readchar处理读入时可能会遇到编码文本由多行组成的问题,因此用这种方法一直读到不为换行字符为止;
* 2.readint用来读取确定位数后的编码文本;
* 3.readcode主要是将编码文本对应到code[len][value]数组当中。读到EOF表示文件读取完毕;读到换行符表示当前编码本读取完毕。
** /
/**/
#include <stdio.h>
#include <string.h>
/*一直读取到非换行符为止*/
int readchar(){
for(;;){
int ch = getchar();
if(ch != '\n' && ch !=... | [
"740782940@qq.com"
] | 740782940@qq.com |
e0c613827be7f0965b9b7be58888257ddcee6bb9 | 4da66ea2be83b62a46d77bf53f690b5146ac996d | /modules/theoraplayer/native/theoraplayer/src/YUV/libyuv/include/libyuv/convert_argb.h | 360c6d359396c0b7d8c21eea7fad597d56aac85c | [
"Zlib",
"LicenseRef-scancode-unknown",
"BSD-3-Clause"
] | permissive | blitz-research/monkey2 | 620855b08b6f41b40ff328da71d2e0d05d943855 | 3f6be81d73388b800a39ee53acaa7f4a0c6a9f42 | refs/heads/develop | 2021-04-09T17:13:34.240441 | 2020-06-28T04:26:30 | 2020-06-28T04:26:30 | 53,753,109 | 146 | 76 | Zlib | 2019-09-07T21:28:05 | 2016-03-12T20:59:51 | Monkey | UTF-8 | C++ | false | false | 8,340 | h | /*
* Copyright 2012 The LibYuv 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 contributing p... | [
"blitzmunter@gmail.com"
] | blitzmunter@gmail.com |
b20ae5a37dfd651c5b7560a63d7d2d8e9b0f62ac | 3960aae83906764d80a045154eed9c79b00b20bd | /try.cpp | acfb411349ca5a1181085d1cf5a954565bc5173e | [] | no_license | davidwangd/pinyin-Introduction-to-AI-homework | cf1a6ce788343b1bcb87d2ae9e440e429051dc25 | b9b468bae1d6b600ff163fe61336db80b8d8a606 | refs/heads/master | 2021-01-22T21:45:44.788621 | 2017-03-31T15:23:43 | 2017-03-31T15:23:43 | 85,473,468 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 423 | cpp | #include "jsoncpp/json.h"
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <string>
#include <fstream>
#include <algorithm>
using namespace std;
int main(){
ifstream fin("sina_news/2016-01.txt");
ofstream fout("test.txt");
string str;
for (int i = 0;i < 3;i++){
getline(fin, str);
Json::Reader re... | [
"david wang"
] | david wang |
0649da288e146326b45319cd216312b1825dd414 | 5d6d99d9af43de26935bad3e593018b872f25d2b | /src/gdlibrary.cpp | 45297ae25f51bdd1f3402871a4949beccd8085c2 | [
"MIT"
] | permissive | portaloffreedom/godot_entt_net_example | 0b91b97f18c2554faae864647e132182c7a84a21 | fae7b359dc42988f3afb4c1bb6247aa191d30fa3 | refs/heads/master | 2021-08-28T03:39:11.018483 | 2021-08-17T10:19:39 | 2021-08-17T10:19:39 | 209,872,723 | 23 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 690 | cpp | #include <Godot.hpp>
#include "Entity.h"
#include "EntityManager.h"
extern "C" void GDN_EXPORT godot_gdnative_init(godot_gdnative_init_options *o)
{
std::cout << "godot_gdnative_init()" << std::endl;
godot::Godot::gdnative_init(o);
}
extern "C" void GDN_EXPORT godot_gdnative_terminate(godot_gdnative_terminate_optio... | [
"matteo.dek@gmail.com"
] | matteo.dek@gmail.com |
dc01771861a12001df0c9ab777c33dbf5b6006aa | c62001313d731f5a1b090b7dcf6b35ebc27c8014 | /source/MyGlobal.cpp | 3ff23b73ac8431cb6c61ca4281ff5a9d1df25d05 | [] | no_license | ZHHJemotion/Face_Verification_UI | c6ed5fe77fdb384acdbef378dd4d242637479d79 | b575e3e1b825bc5662eaa6c4b77d20c10c20cb5a | refs/heads/master | 2021-04-26T23:36:06.570751 | 2018-09-15T22:43:13 | 2018-09-15T22:43:13 | 123,825,383 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,040 | cpp | #include <QDebug>
#include <QLibrary>
#include "MyGlobal.h"
QString MyGlobal::pathOriginalImage = NULL;
QString MyGlobal::pathFaceLandmarkImage = NULL;
QString MyGlobal::pathFaceAlignmentImage = NULL;
MyGlobal::MyGlobal(QObject *parent):QObject(parent)
{
}
MyGlobal::~MyGlobal()
{
}
bool MyGlobal::init()
{
// ... | [
"zhhjemotion@hotmail.com"
] | zhhjemotion@hotmail.com |
38ad9d34a7d22a472ef5a7d7e0e56f2c644a70fb | 1346a61bccb11d41e36ae7dfc613dafbe56ddb29 | /GeometricTools/GTEngine/Include/GteConvexHull2.inl | 5d15b8e7a0aae78289783114b3d5bbad80ab7698 | [] | no_license | cnsuhao/GeometricToolsEngine1p0 | c9a5845e3eb3a44733445c02bfa57c8ed286a499 | d4f2b7fda351917d4bfc3db1c6f8090f211f63d1 | refs/heads/master | 2021-05-28T02:00:50.566024 | 2014-08-14T07:28:23 | 2014-08-14T07:28:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,793 | inl | // Geometric Tools LLC, Redmond WA 98052
// Copyright (c) 1998-2014
// Distributed under the Boost Software License, Version 1.0.
// http://www.boost.org/LICENSE_1_0.txt
// http://www.geometrictools.com/License/Boost/LICENSE_1_0.txt
// File Version: 1.0.0 (2014/08/11)
//------------------------------------------------... | [
"qloach@foxmail.com"
] | qloach@foxmail.com |
518b173c8b78649fcfd795adee7a20e7f42360b5 | 046355f0dbfa7e677c4885466e683432a4c62bac | /build-MyNotepad-Desktop_Qt_5_12_0_MSVC2017_64bit-Release/ui_aboutdialog.h | 38ebdc89ec319bf260ff9a6cf0b54db7768aaa1a | [] | no_license | Sears-Tian/Qt-Toolkit | fc32828089f07cf86fe3f86e7748c9a34a0651d9 | 2419a78cb4c001d5b7d30370ff412d5e1cda2779 | refs/heads/master | 2020-05-17T07:41:33.456290 | 2019-04-26T09:05:55 | 2019-04-26T09:05:55 | 183,427,469 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,498 | h | /********************************************************************************
** Form generated from reading UI file 'aboutdialog.ui'
**
** Created by: Qt User Interface Compiler version 5.12.0
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
**************************************... | [
"worldtjh@hotmail.com"
] | worldtjh@hotmail.com |
0e093694e558ec9e20b7da8d285441de52a0be34 | ed412f1b35df1abc96c821e00345c2cefa2ba986 | /Projekt/Projekt/GameInteractionController.h | 92a11fb82b644a1d52b15e87a19cbcf00b62e011 | [] | no_license | andrzejg123/ProjektPK4 | 5919a14210d02d086796569995b2c299c9f65c0e | 722fd5d343627f980c6fa0d61a7dc11b5fca6ce9 | refs/heads/master | 2020-04-28T12:34:10.002902 | 2019-04-03T07:53:23 | 2019-04-03T07:53:23 | 175,280,207 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 528 | h | #pragma once
#include "GameObjectsHolder.h"
#include "GameView.h"
#include "PendingActionsController.h"
class GameInteractionController
{
GameObjectsHolder* gameObjectsHolder;
Interactive* possibleInteractionObject;
PendingActionsController* pendingActionsController;
GameView* gameView;
public:
void checkInteract... | [
"a"
] | a |
c789c2ac81d8370e3cd143ec481fd7367d4a8fb4 | 128774befeda73b0e27317f46c8f3cf94668071e | /special-practice/数论/prime.cpp | 43bd2617e8a5bfc2ae997d0a702780ae376bf3b2 | [] | no_license | toFindMore/oj-pratice | 5932903284d9d0c583f09aa62950aa911e0236ad | 9a714aeb6a117250a622d3efebbeb39b2737355f | refs/heads/master | 2023-04-13T19:35:14.302216 | 2021-04-09T13:49:58 | 2021-04-09T13:49:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 929 | cpp | //
// Created by 周健 on 2020-02-02.
//
#include <stdio.h>
#include <string.h>
const int MAXN = 10001;
int prime[MAXN];
bool isPrime[MAXN];
void init1() {
int cnt = -1;
memset(isPrime, true, sizeof(isPrime));
isPrime[0] = isPrime[1] = false;
for (int i = 2; i < MAXN; i++) {
if (isPrime[i]) {
... | [
"17855824057@163.com"
] | 17855824057@163.com |
2c3de1ae3e8940bad187b6c2e4f3c2ecd613edec | d508027427b9a11a6bab0722479ee8d7b7eda72b | /3rd/include/maya2012sdk/tbb/task.h | 2ed69ecb72f60acd25d4eec3ffa56405db0779de | [] | no_license | gaoyakun/atom3d | 421bc029ee005f501e0adb6daed778662eb73bac | 129adf3ceca175faa8acf715c05e3c8f099399fe | refs/heads/master | 2021-01-10T18:28:50.562540 | 2019-12-06T13:17:00 | 2019-12-06T13:17:00 | 56,327,530 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 33,773 | h | /*
Copyright 2005-2010 Intel Corporation. All Rights Reserved.
The source code contained or described herein and all documents related
to the source code ("Material") are owned by Intel Corporation or its
suppliers or licensors. Title to the Material remains with Intel
Corporation or its supplier... | [
"80844871@qq.com"
] | 80844871@qq.com |
ecaae615017b21f6409ea13bcc73e648b6d064ec | 3e70eda6819fec5bf5ba2299573b333a3a610131 | /c/library/newbench/trunk/src/test/stub-server/include/c_auto_ptr.h | a7ba18a4bc1a53591a3ffe93a3c7083085c26078 | [] | no_license | dawnbreaks/taomee | cdd4f9cecaf659d134d207ae8c9dd2247bef97a1 | f21b3633680456b09a40036d919bf9f58c9cd6d7 | refs/heads/master | 2021-01-17T10:45:31.240038 | 2013-03-14T08:10:27 | 2013-03-14T08:10:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,993 | h | /*
* =====================================================================================
* @file c_auto_ptr.h
* @brief 提供相关自动管理指针类,这些类会自动释放传入的资源
*
* Detailed description starts here.
*
* @internal
* Created 01/22/2010 01:53:21 PM
* Revision 1.0.0.0
* Compiler gcc/g++
* Company TaoMe... | [
"smyang.ustc@gmail.com"
] | smyang.ustc@gmail.com |
531a1d188adf67e0c3f4142941f2519f4e1050f2 | 1f63dde39fcc5f8be29f2acb947c41f1b6f1683e | /Boss2D/addon/webrtc-jumpingyang001_for_boss/common_video/video_frame.cc | f93def599ff4fcf4404b7e779135069a4020f68c | [
"BSD-3-Clause",
"LicenseRef-scancode-google-patent-license-webm",
"LicenseRef-scancode-google-patent-license-webrtc",
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | koobonil/Boss2D | 09ca948823e0df5a5a53b64a10033c4f3665483a | e5eb355b57228a701495f2660f137bd05628c202 | refs/heads/master | 2022-10-20T09:02:51.341143 | 2019-07-18T02:13:44 | 2019-07-18T02:13:44 | 105,999,368 | 7 | 2 | MIT | 2022-10-04T23:31:12 | 2017-10-06T11:57:07 | C++ | UTF-8 | C++ | false | false | 1,836 | cc | /*
* Copyright (c) 2012 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... | [
"slacealic@nate.com"
] | slacealic@nate.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.